summaryrefslogtreecommitdiff
path: root/stmhal/uart.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-01-01 21:06:20 +0000
committerDamien George <damien.p.george@gmail.com>2015-01-01 21:06:20 +0000
commit2cf6dfa280a8149941aafc852fbaae8bdfc4999e (patch)
tree9e9ea6ed5591f424359ce25cd0f56d8932380a0e /stmhal/uart.c
parentb36be5ff5172c97a8f37228c1ec163df466fd588 (diff)
stmhal: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'stmhal/uart.c')
-rw-r--r--stmhal/uart.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/stmhal/uart.c b/stmhal/uart.c
index 870fa4983..98be74593 100644
--- a/stmhal/uart.c
+++ b/stmhal/uart.c
@@ -29,13 +29,9 @@
#include <stdarg.h>
#include <errno.h>
-#include "mpconfig.h"
-#include "nlr.h"
-#include "misc.h"
-#include "qstr.h"
-#include "obj.h"
-#include "runtime.h"
-#include "stream.h"
+#include "py/nlr.h"
+#include "py/runtime.h"
+#include "py/stream.h"
#include "uart.h"
#include "pybioctl.h"
#include MICROPY_HAL_H