File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
libraries/LoRa/examples/LoRaWAN/LoRaWAN_Sensors/LoRaWan_OnBoardGPS_Air530Z Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ void VextOFF(void) //Vext default OFF
98
98
pinMode (Vext,OUTPUT);
99
99
digitalWrite (Vext, HIGH);
100
100
}
101
- void displayGPSInof ()
101
+ void displayGPSInfo ()
102
102
{
103
103
char str[30 ];
104
104
display.clear ();
@@ -143,7 +143,7 @@ void displayGPSInof()
143
143
display.display ();
144
144
}
145
145
146
- void printGPSInof ()
146
+ void printGPSInfo ()
147
147
{
148
148
Serial.print (" Date/Time: " );
149
149
if (GPS.date .isValid ())
@@ -243,8 +243,8 @@ static void prepareTxFrame( uint8_t port )
243
243
if ( (millis ()-start) > printinfo )
244
244
{
245
245
printinfo += 1000 ;
246
- printGPSInof ();
247
- displayGPSInof ();
246
+ printGPSInfo ();
247
+ displayGPSInfo ();
248
248
}
249
249
}
250
250
}
You can’t perform that action at this time.
0 commit comments