Browse Source
Merge pull request #1300 from fschrempf/fix-rak4631-gps
Fix RAK4631 GPS Detection
pull/1336/head
ripplebiz
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
2 deletions
-
src/helpers/sensors/EnvironmentSensorManager.cpp
|
|
|
@ -615,6 +615,7 @@ void EnvironmentSensorManager::rakGPSInit(){ |
|
|
|
MESH_DEBUG_PRINTLN("No GPS found"); |
|
|
|
gps_active = false; |
|
|
|
gps_detected = false; |
|
|
|
Serial1.end(); |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
@ -653,8 +654,7 @@ bool EnvironmentSensorManager::gpsIsAwake(uint8_t ioPin){ |
|
|
|
|
|
|
|
_location = &RAK12500_provider; |
|
|
|
return true; |
|
|
|
} |
|
|
|
else if(Serial1){ |
|
|
|
} else if (Serial1.available()) { |
|
|
|
MESH_DEBUG_PRINTLN("Serial GPS init correctly and is turned on"); |
|
|
|
if(PIN_GPS_EN){ |
|
|
|
gpsResetPin = PIN_GPS_EN; |
|
|
|
@ -664,6 +664,8 @@ bool EnvironmentSensorManager::gpsIsAwake(uint8_t ioPin){ |
|
|
|
gps_detected = true; |
|
|
|
return true; |
|
|
|
} |
|
|
|
|
|
|
|
pinMode(ioPin, INPUT); |
|
|
|
MESH_DEBUG_PRINTLN("GPS did not init with this IO pin... try the next"); |
|
|
|
return false; |
|
|
|
} |
|
|
|
|