diff options
author | Daniel Campora <daniel@wipy.io> | 2015-05-23 20:52:42 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-05-24 11:44:08 +0200 |
commit | 3cb804de26eda34ad24d52b6c98fa43e51bd027a (patch) | |
tree | 8a0a16b60b7d89f363ab26325f084b304a30dc6e /cc3200/ftp/updater.c | |
parent | 9f8c5456befbf33cf8e02de99b6b9f5a417f006a (diff) | |
download | micropython-3cb804de26eda34ad24d52b6c98fa43e51bd027a.tar.gz micropython-3cb804de26eda34ad24d52b6c98fa43e51bd027a.zip |
cc3200: Remove NIC abstraction layer.
That layer is nice, but the CC3200 doesn't need it and getting rid of
it saves ~200 bytes, which are more than welcome.
Diffstat (limited to 'cc3200/ftp/updater.c')
-rw-r--r-- | cc3200/ftp/updater.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cc3200/ftp/updater.c b/cc3200/ftp/updater.c index 5b599d2f63..4c215d68aa 100644 --- a/cc3200/ftp/updater.c +++ b/cc3200/ftp/updater.c @@ -3,10 +3,12 @@ #include "py/mpconfig.h" #include MICROPY_HAL_H +#include "py/obj.h" #include "simplelink.h" #include "flc.h" #include "updater.h" #include "shamd5.h" +#include "modnetwork.h" #include "modwlan.h" #include "debug.h" |