diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-10 10:38:38 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-10 10:38:38 +0100 |
commit | c17fd70de93202a97d1af5b48b7db9415951b5a1 (patch) | |
tree | 0a331dc4a19a7f11811df235386fba6b687a1951 /stm/timer.c | |
parent | 3417bc2f25c492f7551e35d14349d85a45122b43 (diff) | |
download | micropython-c17fd70de93202a97d1af5b48b7db9415951b5a1.tar.gz micropython-c17fd70de93202a97d1af5b48b7db9415951b5a1.zip |
stm: Reorder mpconfig.h header inclusion to get stm building.
Diffstat (limited to 'stm/timer.c')
-rw-r--r-- | stm/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/timer.c b/stm/timer.c index 0a19fa5a81..8d51de2cc1 100644 --- a/stm/timer.c +++ b/stm/timer.c @@ -6,9 +6,9 @@ #include "stm32f4xx_rcc.h" #include "stm32f4xx_tim.h" +#include "mpconfig.h" #include "nlr.h" #include "misc.h" -#include "mpconfig.h" #include "qstr.h" #include "parse.h" #include "obj.h" |