SPI seems to work simultaniously

This commit is contained in:
theFeiter 2022-07-03 18:03:32 +02:00
parent ec3bb4dc86
commit 7632203d60

View File

@ -252,10 +252,6 @@ void getLoRa() {
}
void logToSD() {
#ifdef USE_LORA
end_lora();
#endif
if(begin_SD()){
DBG("Logging to SD card.");
DynamicJsonDocument doc(24576);
for (int i = 0; i < ln; i++) {
@ -270,12 +266,7 @@ void logToSD() {
logfile.println(outgoingString);
logfile.close();
end_SD();
}
#ifdef USE_LORA
begin_lora();
#endif
}
void sendESPNOW(uint8_t address) {