mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 11:10:14 +01:00
py: Remove emit_glue init and deinit. Needed only for debugging.
Debugging output for emit_glue now simplified so that the init and deinit functions are no longer needed.
This commit is contained in:
@@ -77,8 +77,6 @@ void mp_init(void) {
|
||||
// __debug__ enabled by default
|
||||
mp_set_debug(true);
|
||||
|
||||
mp_emit_glue_init();
|
||||
|
||||
// init global module stuff
|
||||
mp_module_init();
|
||||
|
||||
@@ -93,7 +91,6 @@ void mp_init(void) {
|
||||
void mp_deinit(void) {
|
||||
//mp_obj_dict_free(&dict_main);
|
||||
mp_module_deinit();
|
||||
mp_emit_glue_deinit();
|
||||
|
||||
// call port specific deinitialization if any
|
||||
#ifdef MICROPY_PORT_INIT_FUNC
|
||||
|
||||
Reference in New Issue
Block a user