We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the Flutter, it seems that only few events are fired during DFU, in my case, they are onDfuProcessStarting, onProgressChanged and onDfuCompleted.
onDfuProcessStarting
onProgressChanged
onDfuCompleted
onError gets called in the native layer, but looks like the channel method call arguments is not in correct format, this event expects
onError
progressListener?.onError( call.arguments['deviceAddress'], call.arguments['error'], call.arguments['errorType'], call.arguments['message'], );
But the actual arguments the Flutter part receives is just the deviceAddress in String, not even in Map.
deviceAddress
It would be good to fix the issues and get all events work. Thanks.
The text was updated successfully, but these errors were encountered:
I have same problem
Sorry, something went wrong.
No branches or pull requests
In the Flutter, it seems that only few events are fired during DFU, in my case, they are
onDfuProcessStarting
,onProgressChanged
andonDfuCompleted
.onError
gets called in the native layer, but looks like the channel method call arguments is not in correct format, this event expectsBut the actual arguments the Flutter part receives is just the
deviceAddress
in String, not even in Map.It would be good to fix the issues and get all events work. Thanks.
The text was updated successfully, but these errors were encountered: