You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that I set the delegate and the delegateProcess, but they are nil into the DFUServiceSelector.
In DFUServiceInitiator: self.initiator.delegate is not nil, but in DFUServiceSelector: self.initiator.delegate is nil. For this
the callback for the state and the progress not work
The text was updated successfully, but these errors were encountered:
How and why do you get access to DFUServiceSelector? The selector is started with the initiator instance so all the fields should be set as well, unless you set them back to nil of the self from your code was disposed.
I try to update a firmware with the library and use the same method of your example app:
The problem is that I set the
delegate
and thedelegateProcess
, but they are nil into theDFUServiceSelector
.In
DFUServiceInitiator
:self.initiator.delegate
is not nil, but inDFUServiceSelector
:self.initiator.delegate
is nil. For thisthe callback for the state and the progress not work
The text was updated successfully, but these errors were encountered: