diff options
author | danicampora <danicampora@gmail.com> | 2015-03-18 21:48:28 +0100 |
---|---|---|
committer | danicampora <danicampora@gmail.com> | 2015-03-18 21:55:02 +0100 |
commit | f382f4442e38227a983ad0a966b00c6d42b3911f (patch) | |
tree | 439e813bfc9f1d64de976a197bea15d852bc5c07 /cc3200/mods/pybsd.h | |
parent | 963d7c7ee6b698dc289656edc08942aab33681e9 (diff) | |
download | micropython-f382f4442e38227a983ad0a966b00c6d42b3911f.tar.gz micropython-f382f4442e38227a983ad0a966b00c6d42b3911f.zip |
cc3200: Fixes and improvements to the SD card driver.
Diffstat (limited to 'cc3200/mods/pybsd.h')
-rw-r--r-- | cc3200/mods/pybsd.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cc3200/mods/pybsd.h b/cc3200/mods/pybsd.h index d2aa140501..b1244f23f9 100644 --- a/cc3200/mods/pybsd.h +++ b/cc3200/mods/pybsd.h @@ -27,11 +27,10 @@ #define PYBSD_H_ #if MICROPY_HW_HAS_SDCARD +extern const mp_obj_type_t pyb_sd_type; + void pybsd_init0 (void); -bool pybsd_is_present(void); void pybsd_deinit (void); - -extern const mp_obj_type_t pyb_sd_type; #endif #endif // PYBSD_H_ |