diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2020-04-07 15:01:26 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-04-29 16:45:46 +1000 |
commit | c987adb9e938dbcb1a50e7b0947913c4e37e0943 (patch) | |
tree | 5382a54a3798dd19a8e8e132e5a69ea4bd84cefc /extmod/btstack/modbluetooth_btstack.h | |
parent | 50e44f477b543e0caaf4abd5d9f7ce61702b863e (diff) | |
download | micropython-c987adb9e938dbcb1a50e7b0947913c4e37e0943.tar.gz micropython-c987adb9e938dbcb1a50e7b0947913c4e37e0943.zip |
extmod/btstack: Implement more robust init/deinit sequencing.
Diffstat (limited to 'extmod/btstack/modbluetooth_btstack.h')
-rw-r--r-- | extmod/btstack/modbluetooth_btstack.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extmod/btstack/modbluetooth_btstack.h b/extmod/btstack/modbluetooth_btstack.h index ba1d9591dc..3bdb5f271e 100644 --- a/extmod/btstack/modbluetooth_btstack.h +++ b/extmod/btstack/modbluetooth_btstack.h @@ -52,6 +52,7 @@ enum { MP_BLUETOOTH_BTSTACK_STATE_OFF, MP_BLUETOOTH_BTSTACK_STATE_STARTING, MP_BLUETOOTH_BTSTACK_STATE_ACTIVE, + MP_BLUETOOTH_BTSTACK_STATE_TIMEOUT, }; extern volatile int mp_bluetooth_btstack_state; |