Skip to content

Commit

Permalink
Merge pull request #270 from Bassadin/patch-1
Browse files Browse the repository at this point in the history
Fix typo in method name
  • Loading branch information
Heltec-Aaron-Lee committed Apr 11, 2023
2 parents c3e0818 + 3a961d9 commit 64bcf01
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 64bcf01

Please sign in to comment.