From 3c8cda25fbe9991e4bca68da1b6d8bf17b21fbf9 Mon Sep 17 00:00:00 2001 From: wir3z Date: Wed, 22 Dec 2021 10:28:55 -0700 Subject: [PATCH] Added linux safe path. --- lib/default/TasmotaSerial-3.3.0/src/TasmotaSerial.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/default/TasmotaSerial-3.3.0/src/TasmotaSerial.cpp b/lib/default/TasmotaSerial-3.3.0/src/TasmotaSerial.cpp index 81fc94834..e47e0d224 100644 --- a/lib/default/TasmotaSerial-3.3.0/src/TasmotaSerial.cpp +++ b/lib/default/TasmotaSerial-3.3.0/src/TasmotaSerial.cpp @@ -30,8 +30,8 @@ extern "C" { #ifdef ESP8266 // added to access kTasmotaSerialConfig -#include "..\..\..\..\tasmota\tasmota_compat.h" -#include "..\..\..\..\tasmota\tasmota.h" +#include "../../../../tasmota/tasmota_compat.h" +#include "../../../../tasmota/tasmota.h" void IRAM_ATTR callRxRead(void *self) { ((TasmotaSerial*)self)->rxRead(); };