diff options
author | Dave Hylands <dhylands@gmail.com> | 2015-07-28 11:13:33 -0700 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-07-30 00:38:32 +0100 |
commit | 92d4b51ad5d828930334f87d9619a78b5877a384 (patch) | |
tree | b055ba812bfce720130c6c52272bde38e80a00c9 /stmhal/extint.h | |
parent | 7e7fb0b7a3d716062281c2366de97a41a1ea87c1 (diff) | |
download | micropython-92d4b51ad5d828930334f87d9619a78b5877a384.tar.gz micropython-92d4b51ad5d828930334f87d9619a78b5877a384.zip |
stmhal: Add STM32F7DISC and associated changes.
Diffstat (limited to 'stmhal/extint.h')
-rw-r--r-- | stmhal/extint.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/stmhal/extint.h b/stmhal/extint.h index 6eb2137414..c40ced3035 100644 --- a/stmhal/extint.h +++ b/stmhal/extint.h @@ -36,6 +36,9 @@ #define EXTI_USB_OTG_HS_WAKEUP (20) #define EXTI_RTC_TIMESTAMP (21) #define EXTI_RTC_WAKEUP (22) +#if defined(STM32F7) +#define EXTI_LPTIM1_ASYNC_EVENT (23) +#endif #define EXTI_NUM_VECTORS (PYB_EXTI_NUM_VECTORS) |