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/pybwlan.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/pybwlan.c')
-rw-r--r-- | stmhal/pybwlan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/pybwlan.c b/stmhal/pybwlan.c index 72cb9bfd98..06309b61c0 100644 --- a/stmhal/pybwlan.c +++ b/stmhal/pybwlan.c @@ -5,9 +5,9 @@ #include "stm32f4xx_hal.h" +#include "mpconfig.h" #include "nlr.h" #include "misc.h" -#include "mpconfig.h" #include "qstr.h" #include "obj.h" #include "runtime.h" |