aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George2020-03-26 00:52:35 +1100
committerDamien George2020-03-27 00:30:37 +1100
commitdbba6b05dc001d6e17328318e84243dfad592381 (patch)
tree7351dcb95b8dbadf0c77d6bb318a53ea3a108762
parentad004db662b383a9bf310601e13e896c99e11e30 (diff)
stm32/mpconfigport.h: Remove unused root pointer for BTstack bindings.
This was a cut-and-paste error from the NimBLE bindings.
-rw-r--r--ports/stm32/mpconfigport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/stm32/mpconfigport.h b/ports/stm32/mpconfigport.h
index a7baa3495..480aa6f30 100644
--- a/ports/stm32/mpconfigport.h
+++ b/ports/stm32/mpconfigport.h
@@ -272,7 +272,7 @@ struct _mp_bluetooth_nimble_root_pointers_t;
#if MICROPY_BLUETOOTH_BTSTACK
struct _mp_bluetooth_btstack_root_pointers_t;
-#define MICROPY_PORT_ROOT_POINTER_BLUETOOTH_BTSTACK void **bluetooth_nimble_memory; struct _mp_bluetooth_btstack_root_pointers_t *bluetooth_btstack_root_pointers;
+#define MICROPY_PORT_ROOT_POINTER_BLUETOOTH_BTSTACK struct _mp_bluetooth_btstack_root_pointers_t *bluetooth_btstack_root_pointers;
#else
#define MICROPY_PORT_ROOT_POINTER_BLUETOOTH_BTSTACK
#endif