Remove !!! from examples 18 and 19 (!!! can cause avrdude to crash!)

This commit is contained in:
PaulZC
2021-06-29 15:35:08 +01:00
parent 4381497e68
commit 794966bc9c
2 changed files with 5 additions and 5 deletions
@@ -68,7 +68,7 @@ void setup()
if (myGNSS.setDynamicModel(DYN_MODEL_PORTABLE) == false) // Set the dynamic model to PORTABLE
{
Serial.println(F("***!!! Warning: setDynamicModel failed !!!***"));
Serial.println(F("*** Warning: setDynamicModel failed ***"));
}
else
{
@@ -79,7 +79,7 @@ void setup()
uint8_t newDynamicModel = myGNSS.getDynamicModel();
if (newDynamicModel == DYN_MODEL_UNKNOWN)
{
Serial.println(F("***!!! Warning: getDynamicModel failed !!!***"));
Serial.println(F("*** Warning: getDynamicModel failed ***"));
}
else
{