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:
David Lechner
2022-07-02 15:05:41 -05:00
committed by Damien George
parent 32e32bd761
commit 2c728c5330
2 changed files with 2 additions and 6 deletions

View File

@@ -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
////////////////////////////////////////////////////////////