mirror of
https://github.com/timmbogner/Farm-Data-Relay-System
synced 2024-11-10 07:10:42 +00:00
SPI seems to work simultaniously
This commit is contained in:
parent
ec3bb4dc86
commit
7632203d60
@ -252,30 +252,21 @@ 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++) {
|
||||
doc[i]["id"] = theData[i].id;
|
||||
doc[i]["type"] = theData[i].t;
|
||||
doc[i]["data"] = theData[i].d;
|
||||
}
|
||||
String outgoingString;
|
||||
serializeJson(doc, outgoingString);
|
||||
|
||||
File logfile = SD.open("fdrs_log.txt", FILE_WRITE);
|
||||
logfile.println(outgoingString);
|
||||
logfile.close();
|
||||
|
||||
end_SD();
|
||||
DBG("Logging to SD card.");
|
||||
DynamicJsonDocument doc(24576);
|
||||
for (int i = 0; i < ln; i++) {
|
||||
doc[i]["id"] = theData[i].id;
|
||||
doc[i]["type"] = theData[i].t;
|
||||
doc[i]["data"] = theData[i].d;
|
||||
}
|
||||
|
||||
#ifdef USE_LORA
|
||||
begin_lora();
|
||||
#endif
|
||||
String outgoingString;
|
||||
serializeJson(doc, outgoingString);
|
||||
|
||||
File logfile = SD.open("fdrs_log.txt", FILE_WRITE);
|
||||
logfile.println(outgoingString);
|
||||
logfile.close();
|
||||
|
||||
|
||||
}
|
||||
|
||||
void sendESPNOW(uint8_t address) {
|
||||
|
Loading…
Reference in New Issue
Block a user