forked from Lora-net/LoRaMac-node
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No longer use Deep sleep for when waiting for GPS fix (#439)
Its proving hard to program, and makes it hard to program the Hardware independent watchdog option byte(IWDG_SW). There is no avoiding the spikes due to processor turning on, so keep it on always. Only exception is when doing TX, then put processor in low power mode.
- Loading branch information
1 parent
dfa429a
commit 567bc8f
Showing
4 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -192,7 +192,6 @@ void BoardInitMcu( void ) | |
|
||
RtcInit( ); | ||
|
||
DeepSleepDelayMsInit(); | ||
|
||
for (uint8_t i = 0; i < 5; i++) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters