Skip to content
This repository was archived by the owner on Jan 28, 2021. It is now read-only.

Commit fd381ad

Browse files
committed
Removing checkCallbacks from the non-callback examples.
1 parent 32de5ea commit fd381ad

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

examples/Data_Logging/DataLoggingExample4_RXM_without_Callbacks/DataLoggingExample4_RXM_without_Callbacks.ino

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ void loop()
164164
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
165165

166166
myGPS.checkUblox(); // Check for the arrival of new data and process it.
167-
myGPS.checkCallbacks(); // Check if any callbacks are waiting to be processed.
168167

169168
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
170169

@@ -182,7 +181,6 @@ void loop()
182181

183182
// In case the SD writing is slow or there is a lot of data to write, keep checking for the arrival of new data
184183
myGPS.checkUblox(); // Check for the arrival of new data and process it.
185-
myGPS.checkCallbacks(); // Check if any callbacks are waiting to be processed.
186184

187185
digitalWrite(LED_BUILTIN, LOW); // Turn LED_BUILTIN off again
188186
}

examples/Data_Logging/DataLoggingExample5_Fast_RXM/DataLoggingExample5_Fast_RXM.ino

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ void loop()
179179
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
180180

181181
myGPS.checkUblox(); // Check for the arrival of new data and process it.
182-
myGPS.checkCallbacks(); // Check if any callbacks are waiting to be processed.
183182

184183
// =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
185184

@@ -197,7 +196,6 @@ void loop()
197196

198197
// In case the SD writing is slow or there is a lot of data to write, keep checking for the arrival of new data
199198
myGPS.checkUblox(); // Check for the arrival of new data and process it.
200-
myGPS.checkCallbacks(); // Check if any callbacks are waiting to be processed.
201199

202200
digitalWrite(LED_BUILTIN, LOW); // Turn LED_BUILTIN off again
203201
}

0 commit comments

Comments
 (0)