diff options
author | Damien George <damien.p.george@gmail.com> | 2015-03-04 20:35:41 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-03-04 20:35:41 +0000 |
commit | 4f94d90d4dba522a2fcf451da9c78e810782e2c0 (patch) | |
tree | b204754938c73472f322432c15f26ff6566c2cd9 /stmhal/main.c | |
parent | 6cb6947b99e57ababc70fcc0fccd59038682c885 (diff) |
stmhal: Include fatfs headers using lib/fatfs prefix.
This helps make files reusable across other ports.
Diffstat (limited to 'stmhal/main.c')
-rw-r--r-- | stmhal/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stmhal/main.c b/stmhal/main.c index f91d10d32..d57bb2b2d 100644 --- a/stmhal/main.c +++ b/stmhal/main.c @@ -35,6 +35,8 @@ #include "py/stackctrl.h" #include "py/gc.h" +#include "lib/fatfs/ff.h" + #include "systick.h" #include "pendsv.h" #include "gccollect.h" @@ -52,7 +54,6 @@ #include "rtc.h" #include "storage.h" #include "sdcard.h" -#include "ff.h" #include "rng.h" #include "accel.h" #include "servo.h" |