summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/modpyb.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/modpyb.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/modpyb.c')
-rw-r--r--stmhal/modpyb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stmhal/modpyb.c b/stmhal/modpyb.c
index 40189c1e77..b81f43c1d0 100644
--- a/stmhal/modpyb.c
+++ b/stmhal/modpyb.c
@@ -33,6 +33,8 @@
#include "py/nlr.h"
#include "py/obj.h"
#include "py/gc.h"
+#include "lib/fatfs/ff.h"
+#include "lib/fatfs/diskio.h"
#include "gccollect.h"
#include "irq.h"
#include "systick.h"
@@ -56,8 +58,6 @@
#include "dac.h"
#include "lcd.h"
#include "usb.h"
-#include "ff.h"
-#include "diskio.h"
#include "fsusermount.h"
#include "portmodules.h"