10000 Merge pull request #270 from Bassadin/patch-1 · neurodavid/CubeCell-Arduino@64bcf01 · GitHub
[go: up one dir, main page]

Skip to content

Commit 64bcf01

Browse files
Merge pull request HelTecAutomation#270 from Bassadin/patch-1
Fix typo in method name
2 parents c3e0818 + 3a961d9 commit 64bcf01

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libraries/LoRa/examples/LoRaWAN/LoRaWAN_Sensors/LoRaWan_OnBoardGPS_Air530Z/LoRaWan_OnBoardGPS_Air530Z.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ void VextOFF(void) //Vext default OFF
9898
pinMode(Vext,OUTPUT);
9999
digitalWrite(Vext, HIGH);
100100
}
101-
void displayGPSInof()
101+
void displayGPSInfo()
102102
{
103103
char str[30];
104104
display.clear();
@@ -143,7 +143,7 @@ void displayGPSInof()
143143
display.display();
144144
}
145145

146-
void printGPSInof()
146+
void printGPSInfo()
147147
{
148148
Serial.print("Date/Time: ");
149149
if (GPS.date.isValid())
@@ -243,8 +243,8 @@ static void prepareTxFrame( uint8_t port )
243243
if( (millis()-start) > printinfo )
244244
{
245245
printinfo += 1000;
246-
printGPSInof();
247-
displayGPSInof();
246+
printGPSInfo();
247+
displayGPSInfo();
248248
}
249249
}
250250
}

0 commit comments

Comments
 (0)
0