3.0.6 sync

This commit is contained in:
michalprusa 2016-08-11 10:42:53 +02:00
parent 30f0528aba
commit 307d17422d
965 changed files with 503030 additions and 72574 deletions
Firmware

6
Firmware/Sd2Card.cpp Executable file → Normal file
View file

@ -501,13 +501,15 @@ bool Sd2Card::readData(uint8_t* dst, uint16_t count) {
#endif
chipSelectHigh();
// Toshiba FlashAir Patch. Purge pending status byte.
spiSend(0XFF);
if (flash_air_compatible_)
spiSend(0XFF);
return true;
fail:
chipSelectHigh();
// Toshiba FlashAir Patch. Purge pending status byte.
spiSend(0XFF);
if (flash_air_compatible_)
spiSend(0XFF);
return false;
}
//------------------------------------------------------------------------------