summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/file.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-03-04 20:35:41 +0000
committerDamien George <damien.p.george@gmail.com>2015-03-04 20:35:41 +0000
commit4f94d90d4dba522a2fcf451da9c78e810782e2c0 (patch)
treeb204754938c73472f322432c15f26ff6566c2cd9 /stmhal/file.c
parent6cb6947b99e57ababc70fcc0fccd59038682c885 (diff)
downloadmicropython-4f94d90d4dba522a2fcf451da9c78e810782e2c0.tar.gz
micropython-4f94d90d4dba522a2fcf451da9c78e810782e2c0.zip
stmhal: Include fatfs headers using lib/fatfs prefix.
This helps make files reusable across other ports.
Diffstat (limited to 'stmhal/file.c')
-rw-r--r--stmhal/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/file.c b/stmhal/file.c
index 66bb51f49c..62e5828747 100644
--- a/stmhal/file.c
+++ b/stmhal/file.c
@@ -30,8 +30,8 @@
#include "py/nlr.h"
#include "py/runtime.h"
#include "py/stream.h"
+#include "lib/fatfs/ff.h"
#include "file.h"
-#include "ff.h"
extern const mp_obj_type_t mp_type_fileio;
extern const mp_obj_type_t mp_type_textio;