diff options
author | Michael Paul Coder <mcoder@lucid-code.com> | 2018-11-21 16:39:46 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-11-26 16:34:13 +1100 |
commit | fe452afab2d2d952552a25c221b4861249ed9ec1 (patch) | |
tree | dd5a25b83033db6917662393f9cf402b17b2829f | |
parent | 9acc32b40f9346f17ed75746b7f9380e4805cef4 (diff) |
stm32/flashbdev: Add missing include for irq.h.
This is required for mboot to build.
-rw-r--r-- | ports/stm32/flashbdev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/stm32/flashbdev.c b/ports/stm32/flashbdev.c index 181ee6418..193a43762 100644 --- a/ports/stm32/flashbdev.c +++ b/ports/stm32/flashbdev.c @@ -29,6 +29,7 @@ #include "py/obj.h" #include "py/mperrno.h" +#include "irq.h" #include "led.h" #include "flash.h" #include "storage.h" |