Browse Source
sensecap_solar: disable GPS until it's supported
pull/523/head
Rastislav Vysoky
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
0 deletions
-
variants/sensecap_solar/variant.cpp
|
|
@ -64,6 +64,8 @@ void initVariant() { |
|
|
pinMode(LED_BLUE, OUTPUT); |
|
|
pinMode(LED_BLUE, OUTPUT); |
|
|
digitalWrite(LED_BLUE, LOW); |
|
|
digitalWrite(LED_BLUE, LOW); |
|
|
|
|
|
|
|
|
|
|
|
/* disable gps until we actually support it.
|
|
|
pinMode(GPS_EN, OUTPUT); |
|
|
pinMode(GPS_EN, OUTPUT); |
|
|
digitalWrite(GPS_EN, HIGH); |
|
|
digitalWrite(GPS_EN, HIGH); |
|
|
|
|
|
*/ |
|
|
} |
|
|
} |
|
|
|