mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-22 23:26:45 -08:00
Also, there were two instances of "if(this->text_cycles>GPS_TEXT_MAXCOPIES)" that needed fixing.
This commit is contained in:
@@ -158,7 +158,7 @@ void GpsInterface::enqueue(MicroNMEA& nmea){
|
|||||||
if(size>=5){
|
if(size>=5){
|
||||||
#endif
|
#endif
|
||||||
#ifdef GPS_TEXT_MAXCOPIES
|
#ifdef GPS_TEXT_MAXCOPIES
|
||||||
if(this->text_cycles>GPS_TEXT_MAXCOPIES){
|
if(this->text_cycles>=GPS_TEXT_MAXCOPIES){
|
||||||
#else
|
#else
|
||||||
if(this->text_cycles){
|
if(this->text_cycles){
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user