Convert more modules to use MP_REGISTER_MODULE
Convert espidf, os, rp2pio, samd and time to use MP_REGISTER_MODULE. Related to #5183.
This commit is contained in:
parent
5907ffbe18
commit
a46aa48e23
@ -57,3 +57,5 @@ const mp_obj_module_t samd_module = {
|
|||||||
.base = { &mp_type_module },
|
.base = { &mp_type_module },
|
||||||
.globals = (mp_obj_dict_t *)&samd_module_globals,
|
.globals = (mp_obj_dict_t *)&samd_module_globals,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
MP_REGISTER_MODULE(MP_QSTR_samd, samd_module, CIRCUITPY_SAMD);
|
||||||
|
@ -208,3 +208,5 @@ void raise_esp_error(esp_err_t err) {
|
|||||||
}
|
}
|
||||||
mp_raise_msg_varg(exception_type, translate("%s error 0x%x"), group, err);
|
mp_raise_msg_varg(exception_type, translate("%s error 0x%x"), group, err);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MP_REGISTER_MODULE(MP_QSTR_espidf, espidf_module, CIRCUITPY_ESPIDF);
|
||||||
|
@ -58,3 +58,5 @@ const mp_obj_module_t rp2pio_module = {
|
|||||||
.base = { &mp_type_module },
|
.base = { &mp_type_module },
|
||||||
.globals = (mp_obj_dict_t *)&rp2pio_module_globals,
|
.globals = (mp_obj_dict_t *)&rp2pio_module_globals,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
MP_REGISTER_MODULE(MP_QSTR_rp2pio, rp2pio_module, CIRCUITPY_RP2PIO);
|
||||||
|
@ -255,15 +255,12 @@ typedef long mp_off_t;
|
|||||||
#define BOARD_I2C (defined(DEFAULT_I2C_BUS_SDA) && defined(DEFAULT_I2C_BUS_SCL))
|
#define BOARD_I2C (defined(DEFAULT_I2C_BUS_SDA) && defined(DEFAULT_I2C_BUS_SCL))
|
||||||
#define BOARD_SPI (defined(DEFAULT_SPI_BUS_SCK) && defined(DEFAULT_SPI_BUS_MISO) && defined(DEFAULT_SPI_BUS_MOSI))
|
#define BOARD_SPI (defined(DEFAULT_SPI_BUS_SCK) && defined(DEFAULT_SPI_BUS_MISO) && defined(DEFAULT_SPI_BUS_MOSI))
|
||||||
#define BOARD_UART (defined(DEFAULT_UART_BUS_RX) && defined(DEFAULT_UART_BUS_TX))
|
#define BOARD_UART (defined(DEFAULT_UART_BUS_RX) && defined(DEFAULT_UART_BUS_TX))
|
||||||
|
|
||||||
// I2C and SPI are always allocated off the heap.
|
// I2C and SPI are always allocated off the heap.
|
||||||
|
|
||||||
#if BOARD_UART
|
#if BOARD_UART
|
||||||
#define BOARD_UART_ROOT_POINTER mp_obj_t shared_uart_bus;
|
#define BOARD_UART_ROOT_POINTER mp_obj_t shared_uart_bus;
|
||||||
#else
|
#else
|
||||||
#define BOARD_UART_ROOT_POINTER
|
#define BOARD_UART_ROOT_POINTER
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#else
|
#else
|
||||||
#define BOARD_UART_ROOT_POINTER
|
#define BOARD_UART_ROOT_POINTER
|
||||||
#endif
|
#endif
|
||||||
@ -283,14 +280,6 @@ typedef long mp_off_t;
|
|||||||
#define ERRNO_MODULE { MP_ROM_QSTR(MP_QSTR_errno), MP_ROM_PTR(&mp_module_uerrno) },
|
#define ERRNO_MODULE { MP_ROM_QSTR(MP_QSTR_errno), MP_ROM_PTR(&mp_module_uerrno) },
|
||||||
#else
|
#else
|
||||||
#define ERRNO_MODULE
|
#define ERRNO_MODULE
|
||||||
#
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if CIRCUITPY_ESPIDF
|
|
||||||
extern const struct _mp_obj_module_t espidf_module;
|
|
||||||
#define ESPIDF_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR_espidf),(mp_obj_t)&espidf_module },
|
|
||||||
#else
|
|
||||||
#define ESPIDF_MODULE
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CIRCUITPY_GAMEPADSHIFT
|
#if CIRCUITPY_GAMEPADSHIFT
|
||||||
@ -331,15 +320,6 @@ extern const struct _mp_obj_module_t espidf_module;
|
|||||||
extern const struct _mp_obj_module_t nvm_module;
|
extern const struct _mp_obj_module_t nvm_module;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CIRCUITPY_OS
|
|
||||||
extern const struct _mp_obj_module_t os_module;
|
|
||||||
#define OS_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR_os), (mp_obj_t)&os_module },
|
|
||||||
#define OS_MODULE_ALT_NAME { MP_OBJ_NEW_QSTR(MP_QSTR__os), (mp_obj_t)&os_module },
|
|
||||||
#else
|
|
||||||
#define OS_MODULE
|
|
||||||
#define OS_MODULE_ALT_NAME
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if CIRCUITPY_RE
|
#if CIRCUITPY_RE
|
||||||
#define MICROPY_PY_URE (1)
|
#define MICROPY_PY_URE (1)
|
||||||
#define RE_MODULE { MP_ROM_QSTR(MP_QSTR_re), MP_ROM_PTR(&mp_module_ure) },
|
#define RE_MODULE { MP_ROM_QSTR(MP_QSTR_re), MP_ROM_PTR(&mp_module_ure) },
|
||||||
@ -347,29 +327,6 @@ extern const struct _mp_obj_module_t os_module;
|
|||||||
#define RE_MODULE
|
#define RE_MODULE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CIRCUITPY_RP2PIO
|
|
||||||
extern const struct _mp_obj_module_t rp2pio_module;
|
|
||||||
#define RP2PIO_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR_rp2pio),(mp_obj_t)&rp2pio_module },
|
|
||||||
#else
|
|
||||||
#define RP2PIO_MODULE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if CIRCUITPY_SAMD
|
|
||||||
extern const struct _mp_obj_module_t samd_module;
|
|
||||||
#define SAMD_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR_samd),(mp_obj_t)&samd_module },
|
|
||||||
#else
|
|
||||||
#define SAMD_MODULE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if CIRCUITPY_TIME
|
|
||||||
extern const struct _mp_obj_module_t time_module;
|
|
||||||
#define TIME_MODULE { MP_OBJ_NEW_QSTR(MP_QSTR_time), (mp_obj_t)&time_module },
|
|
||||||
#define TIME_MODULE_ALT_NAME { MP_OBJ_NEW_QSTR(MP_QSTR__time), (mp_obj_t)&time_module },
|
|
||||||
#else
|
|
||||||
#define TIME_MODULE
|
|
||||||
#define TIME_MODULE_ALT_NAME
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CIRCUITPY_ULAB) && CIRCUITPY_ULAB
|
#if defined(CIRCUITPY_ULAB) && CIRCUITPY_ULAB
|
||||||
// ulab requires reverse special methods
|
// ulab requires reverse special methods
|
||||||
#if defined(MICROPY_PY_REVERSE_SPECIAL_METHODS) && !MICROPY_PY_REVERSE_SPECIAL_METHODS
|
#if defined(MICROPY_PY_REVERSE_SPECIAL_METHODS) && !MICROPY_PY_REVERSE_SPECIAL_METHODS
|
||||||
@ -383,17 +340,15 @@ extern const struct _mp_obj_module_t time_module;
|
|||||||
|
|
||||||
// Define certain native modules with weak links so they can be replaced with Python
|
// Define certain native modules with weak links so they can be replaced with Python
|
||||||
// implementations. This list may grow over time.
|
// implementations. This list may grow over time.
|
||||||
#define MICROPY_PORT_BUILTIN_MODULE_WEAK_LINKS \
|
|
||||||
OS_MODULE \
|
#define MICROPY_PORT_BUILTIN_MODULE_WEAK_LINKS
|
||||||
TIME_MODULE \
|
|
||||||
|
|
||||||
// Native modules that are weak links can be accessed directly
|
// Native modules that are weak links can be accessed directly
|
||||||
// by prepending their name with an underscore. This list should correspond to
|
// by prepending their name with an underscore. This list should correspond to
|
||||||
// MICROPY_PORT_BUILTIN_MODULE_WEAK_LINKS, assuming you want the native modules
|
// MICROPY_PORT_BUILTIN_MODULE_WEAK_LINKS, assuming you want the native modules
|
||||||
// to be accessible when overriden.
|
// to be accessible when overriden.
|
||||||
#define MICROPY_PORT_BUILTIN_MODULE_ALT_NAMES \
|
|
||||||
OS_MODULE_ALT_NAME \
|
#define MICROPY_PORT_BUILTIN_MODULE_ALT_NAMES
|
||||||
TIME_MODULE_ALT_NAME \
|
|
||||||
|
|
||||||
// This is an inclusive list that should correspond to the CIRCUITPY_XXX list above,
|
// This is an inclusive list that should correspond to the CIRCUITPY_XXX list above,
|
||||||
// including dependencies.
|
// including dependencies.
|
||||||
@ -403,11 +358,8 @@ extern const struct _mp_obj_module_t time_module;
|
|||||||
#define MICROPY_PORT_BUILTIN_MODULES_STRONG_LINKS \
|
#define MICROPY_PORT_BUILTIN_MODULES_STRONG_LINKS \
|
||||||
BINASCII_MODULE \
|
BINASCII_MODULE \
|
||||||
ERRNO_MODULE \
|
ERRNO_MODULE \
|
||||||
ESPIDF_MODULE \
|
|
||||||
JSON_MODULE \
|
JSON_MODULE \
|
||||||
RE_MODULE \
|
RE_MODULE \
|
||||||
RP2PIO_MODULE \
|
|
||||||
SAMD_MODULE \
|
|
||||||
|
|
||||||
// The following modules are defined in their respective __init__.c file in the
|
// The following modules are defined in their respective __init__.c file in the
|
||||||
// shared-bindings directory using MP_REGISTER_MODULE.
|
// shared-bindings directory using MP_REGISTER_MODULE.
|
||||||
|
@ -247,3 +247,5 @@ const mp_obj_module_t os_module = {
|
|||||||
.base = { &mp_type_module },
|
.base = { &mp_type_module },
|
||||||
.globals = (mp_obj_dict_t *)&os_module_globals,
|
.globals = (mp_obj_dict_t *)&os_module_globals,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
MP_REGISTER_MODULE(MP_QSTR_os, os_module, CIRCUITPY_OS);
|
||||||
|
@ -330,3 +330,5 @@ const mp_obj_module_t time_module = {
|
|||||||
.base = { &mp_type_module },
|
.base = { &mp_type_module },
|
||||||
.globals = (mp_obj_dict_t *)&time_module_globals,
|
.globals = (mp_obj_dict_t *)&time_module_globals,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
MP_REGISTER_MODULE(MP_QSTR_time, time_module, CIRCUITPY_TIME);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user