Skip to content

Commit

Permalink
Fix typo in method name
Browse files Browse the repository at this point in the history
  • Loading branch information
Bassadin authored Mar 18, 2023
1 parent 6c14f83 commit 3a961d9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ void VextOFF(void) //Vext default OFF
pinMode(Vext,OUTPUT);
digitalWrite(Vext, HIGH);
}
void displayGPSInof()
void displayGPSInfo()
{
char str[30];
display.clear();
Expand Down Expand Up @@ -143,7 +143,7 @@ void displayGPSInof()
display.display();
}

void printGPSInof()
void printGPSInfo()
{
Serial.print("Date/Time: ");
if (GPS.date.isValid())
Expand Down Expand Up @@ -243,8 +243,8 @@ static void prepareTxFrame( uint8_t port )
if( (millis()-start) > printinfo )
{
printinfo += 1000;
printGPSInof();
displayGPSInof();
printGPSInfo();
displayGPSInfo();
}
}
}
Expand Down

0 comments on commit 3a961d9

Please sign in to comment.