diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-28 00:59:27 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-28 00:59:27 +0000 |
commit | 0ecd5988a24aaa72415d83961327fc034cfe64a2 (patch) | |
tree | 18e84d91f186999de5b958d79abe61dffbebbf80 | |
parent | e9995bdea2f611bdfc274354561cc660f73358aa (diff) | |
download | micropython-0ecd5988a24aaa72415d83961327fc034cfe64a2.tar.gz micropython-0ecd5988a24aaa72415d83961327fc034cfe64a2.zip |
stmhal: Remove unnecessary #include "systick.h" from pyexec.c.
Makes pyexec.c more re-usable for other ports.
-rw-r--r-- | stmhal/pyexec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/stmhal/pyexec.c b/stmhal/pyexec.c index 761372109a..1563dc8e4a 100644 --- a/stmhal/pyexec.c +++ b/stmhal/pyexec.c @@ -38,7 +38,6 @@ #ifdef MICROPY_HAL_H #include MICROPY_HAL_H #endif -#include "systick.h" #include "readline.h" #include "pyexec.h" #include "pybstdio.h" |