diff options
Diffstat (limited to 'stmhal/extint.h')
-rw-r--r-- | stmhal/extint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/extint.h b/stmhal/extint.h index c64931211f..f2231b5d4f 100644 --- a/stmhal/extint.h +++ b/stmhal/extint.h @@ -22,7 +22,7 @@ void extint_init(void); -uint extint_register(mp_obj_t pin_obj, mp_obj_t mode_obj, mp_obj_t trigger_obj, mp_obj_t callback_obj, bool override_callback_obj, void *param); +uint extint_register(mp_obj_t pin_obj, uint32_t mode, uint32_t pull, mp_obj_t callback_obj, bool override_callback_obj, void *param); void extint_enable(uint line); void extint_disable(uint line); |