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
Transmitting should be set False at end of 'on_tx_done()'
If code is waiting for the 'transmitting' flag to become False it could start execution before the on_tx_done() method has finished setting the dio mapping etc.
Basic idea...where D is a dragino instance
while D.transmitting:
pass
# do something here
# this could be called whilst on_tx_done() is completing it's handling of the interrupt.
Transmitting should be set False at end of 'on_tx_done()'
If code is waiting for the 'transmitting' flag to become False it could start execution before the on_tx_done() method has finished setting the dio mapping etc.
Basic idea...where D is a dragino instance