diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-02 18:03:04 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-02 18:08:16 +0300 |
commit | 9b71b16a942f0ce6b18d0b631d292276baa007c9 (patch) | |
tree | f8b7e9d5b1c8411bdf4fee87c0bfae84903b93b6 /stmhal/lcd.c | |
parent | f54bcbf0997211a3d2a04bab09c79f602fa0c8e9 (diff) | |
download | micropython-9b71b16a942f0ce6b18d0b631d292276baa007c9.tar.gz micropython-9b71b16a942f0ce6b18d0b631d292276baa007c9.zip |
unix,stmhal: Make "mpconfig.h" be first included, as other headers depend on it.
Diffstat (limited to 'stmhal/lcd.c')
-rw-r--r-- | stmhal/lcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/lcd.c b/stmhal/lcd.c index efee13d233..f121a93d7a 100644 --- a/stmhal/lcd.c +++ b/stmhal/lcd.c @@ -2,9 +2,9 @@ #include <string.h> #include <stm32f4xx_hal.h> +#include "mpconfig.h" #include "nlr.h" #include "misc.h" -#include "mpconfig.h" #if MICROPY_HW_HAS_LCD |