diff --git a/BaS_gcc/sources/mmc.c b/BaS_gcc/sources/mmc.c index f278c4f..80b9d82 100644 --- a/BaS_gcc/sources/mmc.c +++ b/BaS_gcc/sources/mmc.c @@ -363,7 +363,7 @@ static uint8_t send_cmd(uint8_t cmd, uint32_t arg) xchg_spi(0xFF, 0); /* Discard following one byte when CMD12 */ } - n = 10000000; /* Wait for response (1000 bytes max) */ + n = 1000; /* Wait for response (1000 bytes max) */ do res = xchg_spi(0xFF, 1); while ((res & 0x80) && --n);