1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 18:39:05 +00:00
trezor-firmware/embed/extmod/modtrezorio/unix-sdcard-mock.h

38 lines
638 B
C
Raw Normal View History

2017-08-14 09:05:19 +00:00
/*
* Copyright (c) Pavol Rusnak, SatoshiLabs
*
* Licensed under TREZOR License
* see LICENSE file for details
*/
2017-05-23 22:47:20 +00:00
#include "../../trezorhal/sdcard.h"
#define SD_ERROR 41U
void sdcard_init(void) {
2017-05-23 22:47:20 +00:00
}
bool sdcard_is_present(void) {
return false;
}
bool sdcard_power_on(void) {
return false;
}
bool sdcard_power_off(void) {
return true;
}
uint64_t sdcard_get_capacity_in_bytes(void) {
return 0;
}
uint32_t sdcard_read_blocks(void *dest, uint32_t block_num, uint32_t num_blocks) {
return SD_ERROR;
}
uint32_t sdcard_write_blocks(const void *src, uint32_t block_num, uint32_t num_blocks) {
return SD_ERROR;
}