Browse Source

Merge pull request #306 from AndreaCCIE/T114-GPS-fix

Increase the delay to 1500 to allow enough time for T114 GPS to start up successfully.
pull/313/head
ripplebiz 1 year ago
committed by GitHub
parent
commit
43f09f302c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      variants/t114/target.cpp

2
variants/t114/target.cpp

@ -97,7 +97,7 @@ bool T114SensorManager::begin() {
digitalWrite(GPS_EN, HIGH); // Power on GPS
// Give GPS a moment to power up and send data
delay(500);
delay(1500);
// We'll consider GPS detected if we see any data on Serial1
gps_detected = (Serial1.available() > 0);

Loading…
Cancel
Save