diff --git a/mmc.c b/mmc.c index e3f7317..3246b27 100644 --- a/mmc.c +++ b/mmc.c @@ -469,7 +469,8 @@ static RAMFUNC unsigned char MMC_Command(unsigned char cmd, unsigned long arg) crc = 0; // flush spi, give card a moment to wake up (needed for old 2GB Panasonic card) - spi_n(0xff, 8); + // spi_n(0xff, 8); // this is not flash save if not in ram + for(b=0;b<8;b++) SPI(0xff); SPI(cmd); MMC_CRC(cmd); diff --git a/osd.c b/osd.c index f008328..66f7ec2 100644 --- a/osd.c +++ b/osd.c @@ -708,8 +708,7 @@ void ScrollReset() static unsigned char osd_key; void OsdKeySet(unsigned char c) { - iprintf("OSD enqueue: %x\n", c); - + // iprintf("OSD enqueue: %x\n", c); osd_key = c; }