diff options
author | Damien George <damien.p.george@gmail.com> | 2017-03-31 22:29:39 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-03-31 22:29:39 +1100 |
commit | b6c7e4b143d96ff9f84ccb22d83b1e15ab084250 (patch) | |
tree | cb1e587ea32fab2bcc2837cdfed498abcfdb9479 /stmhal/main.c | |
parent | 6e6c01b97189a95b59a037fa7dabcf8217f199af (diff) |
all: Use full path name when including mp-readline/timeutils/netutils.
This follows the pattern of how all other headers are now included, and
makes it explicit where the header file comes from. This patch also
removes -I options from Makefile's that specify the mp-readline/timeutils/
netutils directories, which are no longer needed.
Diffstat (limited to 'stmhal/main.c')
-rw-r--r-- | stmhal/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/main.c b/stmhal/main.c index 8d076a08b..566c2db07 100644 --- a/stmhal/main.c +++ b/stmhal/main.c @@ -31,6 +31,7 @@ #include "py/stackctrl.h" #include "py/gc.h" #include "py/mphal.h" +#include "lib/mp-readline/readline.h" #include "lib/utils/pyexec.h" #include "lib/oofatfs/ff.h" #include "extmod/vfs.h" @@ -40,7 +41,6 @@ #include "pendsv.h" #include "pybthread.h" #include "gccollect.h" -#include "readline.h" #include "modmachine.h" #include "i2c.h" #include "spi.h" |