diff options
Diffstat (limited to 'stm/sdcard.h')
-rw-r--r-- | stm/sdcard.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/stm/sdcard.h b/stm/sdcard.h deleted file mode 100644 index da7dbddabb..0000000000 --- a/stm/sdcard.h +++ /dev/null @@ -1,12 +0,0 @@ -// this is a fixed size and should not be changed -#define SDCARD_BLOCK_SIZE (512) - -void sdcard_init(void); -bool sdcard_is_present(void); -bool sdcard_power_on(void); -void sdcard_power_off(void); -uint64_t sdcard_get_capacity_in_bytes(void); -bool sdcard_read_block(uint8_t *dest, uint32_t block_num); -bool sdcard_write_block(const uint8_t *src, uint32_t block_num); - -extern const struct _mp_obj_base_t pyb_sdcard_obj; |