diff options
Diffstat (limited to 'stmhal/extint.c')
-rw-r--r-- | stmhal/extint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/extint.c b/stmhal/extint.c index d2eace574..3044e7904 100644 --- a/stmhal/extint.c +++ b/stmhal/extint.c @@ -346,7 +346,7 @@ const mp_obj_type_t extint_type = { .locals_dict = (mp_obj_t)&extint_locals_dict, }; -void extint_init(void) { +void extint_init0(void) { for (extint_vector_t *v = extint_vector; v < &extint_vector[EXTI_NUM_VECTORS]; v++) { v->callback_obj = mp_const_none; v->param = NULL; |