Browse Source
location provider: reduce reset delay
pull/820/head
fdlamotte
8 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
2 deletions
-
src/helpers/sensors/MicroNMEALocationProvider.h
|
|
@ -67,7 +67,7 @@ public : |
|
|
void reset() override { |
|
|
void reset() override { |
|
|
if (_pin_reset != -1) { |
|
|
if (_pin_reset != -1) { |
|
|
digitalWrite(_pin_reset, GPS_RESET_FORCE); |
|
|
digitalWrite(_pin_reset, GPS_RESET_FORCE); |
|
|
delay(100); |
|
|
delay(10); |
|
|
digitalWrite(_pin_reset, !GPS_RESET_FORCE); |
|
|
digitalWrite(_pin_reset, !GPS_RESET_FORCE); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
@ -123,4 +123,4 @@ public : |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}; |
|
|
}; |
|
|
|