diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-20 01:25:58 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-20 01:25:58 +0100 |
commit | fd6925b4b90761a535bd7b14be019b7870491b2f (patch) | |
tree | 26cda043235c4a069bcd8cd512a151aa0b5c1ebc /stmhal/extint.h | |
parent | f87b35e7798f51acf48ecf9b2cbb25c607f16db6 (diff) |
stmhal: Small bug fixes and simplifications.
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 c64931211..f2231b5d4 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); |