diff --git a/esp32_marauder/GpsInterface.cpp b/esp32_marauder/GpsInterface.cpp index 0bc3fd1..9b4260e 100644 --- a/esp32_marauder/GpsInterface.cpp +++ b/esp32_marauder/GpsInterface.cpp @@ -549,7 +549,10 @@ String GpsInterface::getTextQueue(bool flush) { for(int i=0;itext_in->get(i); if(now!=""){ - if(text!="") text+='\n'; + if(text!=""){ + text+='\r'; + text+='\n'; + } text+=now; } }