diff options
author | Damien George <damien.p.george@gmail.com> | 2015-02-21 19:55:57 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-02-21 19:55:57 +0000 |
commit | 5ca1f5f9d958d2222e439ca6a34cb8f014ce98d3 (patch) | |
tree | f7eee0828606d027b1f8343a60df674630807377 /drivers | |
parent | 49c2ad4fb417b8f0a9d815ff3295fb1af94965f7 (diff) | |
download | micropython-5ca1f5f9d958d2222e439ca6a34cb8f014ce98d3.tar.gz micropython-5ca1f5f9d958d2222e439ca6a34cb8f014ce98d3.zip |
cc3200: Get compiling with CC3100 driver from drivers/ directory.
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/cc3100/inc/simplelink.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/cc3100/inc/simplelink.h b/drivers/cc3100/inc/simplelink.h index 412d6242cb..67db6f36bc 100644 --- a/drivers/cc3100/inc/simplelink.h +++ b/drivers/cc3100/inc/simplelink.h @@ -367,9 +367,9 @@ typedef _i16 _SlReturnVal_t; /*****************************************************************************/ #ifdef SL_PLATFORM_MULTI_THREADED - #include "../source/spawn.h" + #include "spawn.h" #else - #include "../source/nonos.h" + #include "nonos.h" #endif @@ -378,7 +378,7 @@ typedef _i16 _SlReturnVal_t; objInclusion.h must be the last arrangement just before including the API header files since it based on the other configurations to decide which object should be included */ -#include "../source/objInclusion.h" +#include "objInclusion.h" #include "trace.h" #include "fs.h" #include "socket.h" |