summaryrefslogtreecommitdiff
path: root/extmod/btstack
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2020-02-24 15:45:57 +1100
committerDamien George <damien.p.george@gmail.com>2020-03-11 13:01:35 +1100
commit1937fb22abc8e6192f6acfc037f2e9fd59fc6d8c (patch)
tree6803d817f17261db198dbf11458ebce106cea189 /extmod/btstack
parenta01757670687b3f5cd207b8f5e1008b687be27ea (diff)
extmod/nimble: Clarify active state and check for active in all methods.
This commit ensures that the BLE stack is active before allowing operations that may otherwise crash if it's not active. It also clarifies the state better (adding the "stopping" state) and renames mp_bluetooth_is_enabled to the more self-explanatory mp_bluetooth_is_active.
Diffstat (limited to 'extmod/btstack')
-rw-r--r--extmod/btstack/modbluetooth_btstack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/btstack/modbluetooth_btstack.c b/extmod/btstack/modbluetooth_btstack.c
index f5ae40a3a..285f2c816 100644
--- a/extmod/btstack/modbluetooth_btstack.c
+++ b/extmod/btstack/modbluetooth_btstack.c
@@ -271,7 +271,7 @@ void mp_bluetooth_deinit(void) {
MP_STATE_PORT(bluetooth_btstack_root_pointers) = NULL;
}
-bool mp_bluetooth_is_enabled(void) {
+bool mp_bluetooth_is_active(void) {
return mp_bluetooth_btstack_state == MP_BLUETOOTH_BTSTACK_STATE_ACTIVE;
}