From fafbcc36cf1df73b4500aae7c55c492734ca0a81 Mon Sep 17 00:00:00 2001 From: Th3maz1ng Date: Wed, 25 Dec 2019 21:03:21 +0100 Subject: [PATCH] Minor fix because of an issue introduced by the new esp8266 core release --- src/app/tasks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tasks.cpp b/src/app/tasks.cpp index f88cec2..bcc339e 100644 --- a/src/app/tasks.cpp +++ b/src/app/tasks.cpp @@ -25,7 +25,7 @@ boolean task_blink(void *pData) boolean task_batt_sensing(void *pData) { View1Packet *p = (View1Packet *) pData; - Serial.printf_P(F("BATT SENSING...\nRunning since : %d s\n"), millis()/1000); + Serial.printf_P(PSTR("BATT SENSING...\nRunning since : %d s\n"), millis()/1000); p->powerInfo = p->sab->getPowerManager().getPowerInfo(); return true;