diff options
| author | Damien George | 2014-04-08 22:35:42 +0100 |
|---|---|---|
| committer | Damien George | 2014-04-08 22:35:42 +0100 |
| commit | b04488151ec1782422d0e0eac102f6d3c374850f (patch) | |
| tree | c757c20337b05fa1b32cc7882391e1502998c1c6 /stmhal/exti.h | |
| parent | 348435d2798c274b35afbcdba66b86079c0b7357 (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.h | 2 |
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); |
