extmod/modbluetooth: Use MP_REGISTER_ROOT_POINTER().
This uses MP_REGISTER_ROOT_POINTER() to register `bluetooth` instead of using a conditional inside of mp_state_vm_t. Signed-off-by: David Lechner <david@pybricks.com>
This commit is contained in:
parent
32e32bd761
commit
2c728c5330
|
@ -1675,4 +1675,6 @@ int mp_bluetooth_gatts_db_resize(mp_gatts_db_t db, uint16_t handle, size_t len,
|
|||
return entry ? 0 : MP_EINVAL;
|
||||
}
|
||||
|
||||
MP_REGISTER_ROOT_POINTER(mp_obj_t bluetooth);
|
||||
|
||||
#endif // MICROPY_PY_BLUETOOTH
|
||||
|
|
|
@ -196,12 +196,6 @@ typedef struct _mp_state_vm_t {
|
|||
#include "genhdr/root_pointers.h"
|
||||
#endif
|
||||
|
||||
// root pointers for extmod
|
||||
|
||||
#if MICROPY_PY_BLUETOOTH
|
||||
mp_obj_t bluetooth;
|
||||
#endif
|
||||
|
||||
//
|
||||
// END ROOT POINTER SECTION
|
||||
////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in New Issue