diff options
Diffstat (limited to 'firmware/drivers')
| -rw-r--r-- | firmware/drivers/sd.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/firmware/drivers/sd.c b/firmware/drivers/sd.c index 834d8a1..3e05b05 100644 --- a/firmware/drivers/sd.c +++ b/firmware/drivers/sd.c @@ -62,3 +62,16 @@ void sd_parse_csd(tCardInfo *card) card->r2w_factor = card_extract_bits(card->csd, 28, 3); } + +void sd_sleep(void) +{ +} + +void sd_spin(void) +{ +} + +void sd_spindown(int seconds) +{ + (void)seconds; +} |