mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-22 23:26:45 -08:00
Always something; fix errors: off by one (> instead of >=), merge fail, didn't remove old gps_obj.enable_queue() from MenuFunctions.
This commit is contained in:
@@ -102,7 +102,7 @@ void GpsInterface::enqueue(MicroNMEA& nmea){
|
||||
int size=text_in->size();
|
||||
if(size){
|
||||
#ifdef GPS_TEXT_MAXCOPIES
|
||||
if(this->text_cycles>GPS_TEXT_MAXCOPIES){
|
||||
if(this->text_cycles>=GPS_TEXT_MAXCOPIES){
|
||||
#else
|
||||
if(this->text_cycles){
|
||||
#endif
|
||||
@@ -631,4 +631,4 @@ void GpsInterface::main() {
|
||||
this->setGPSInfo();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user