aboutsummaryrefslogtreecommitdiff
path: root/stmhal/exti.h
diff options
context:
space:
mode:
authorDamien George2014-04-08 22:35:42 +0100
committerDamien George2014-04-08 22:35:42 +0100
commitb04488151ec1782422d0e0eac102f6d3c374850f (patch)
treec757c20337b05fa1b32cc7882391e1502998c1c6 /stmhal/exti.h
parent348435d2798c274b35afbcdba66b86079c0b7357 (diff)
stmhal: Make USRSW re-register the EXTI callback each time it's set.
Diffstat (limited to 'stmhal/exti.h')
-rw-r--r--stmhal/exti.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/exti.h b/stmhal/exti.h
index a6b50b26e..6feb9dcea 100644
--- a/stmhal/exti.h
+++ b/stmhal/exti.h
@@ -22,7 +22,7 @@
void exti_init(void);
-uint exti_register(mp_obj_t pin_obj, mp_obj_t mode_obj, mp_obj_t trigger_obj, mp_obj_t callback_obj, void *param);
+uint exti_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);
void exti_enable(uint line);
void exti_disable(uint line);