diff options
author | Dave Hylands <dhylands@gmail.com> | 2015-07-28 08:36:26 -0700 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-07-30 00:38:25 +0100 |
commit | ea8bf8105812b36fbf1596a78c6e14aa0a0c5a36 (patch) | |
tree | 6a8f4a024791052bf50a0328f994d311acd37b49 /stmhal/stm32f4xx_it.c | |
parent | f243851ccdbb686508f37a573e3ba46da5fffa0c (diff) | |
download | micropython-ea8bf8105812b36fbf1596a78c6e14aa0a0c5a36.tar.gz micropython-ea8bf8105812b36fbf1596a78c6e14aa0a0c5a36.zip |
stmhal: Replace #include "stm32f4xx_hal.h" with #include STM32_HAL_H.
Diffstat (limited to 'stmhal/stm32f4xx_it.c')
-rw-r--r-- | stmhal/stm32f4xx_it.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/stm32f4xx_it.c b/stmhal/stm32f4xx_it.c index 26c914da62..7be5af30f6 100644 --- a/stmhal/stm32f4xx_it.c +++ b/stmhal/stm32f4xx_it.c @@ -68,7 +68,7 @@ #include <stdio.h> #include "stm32f4xx_it.h" -#include "stm32f4xx_hal.h" +#include STM32_HAL_H #include "py/obj.h" #include "pendsv.h" |