Skip to content

Commit

Permalink
Merge pull request #57 from jonasdn/jonasdn/56
Browse files Browse the repository at this point in the history
pm: Increase delay before powering system
  • Loading branch information
jonasdn committed May 6, 2021
2 parents 6f4b16a + 330366a commit 5c6dbb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pm.c
Expand Up @@ -298,7 +298,7 @@ const struct {
int delayUp;
} statesFunctions[] = {
[pmAllOff] = { .call = pmDummy , .delay = 2, .delayUp = 2},
[pmSysOff] = { .call = pmNrfPower, .delay = 2, .delayUp = 200},
[pmSysOff] = { .call = pmNrfPower, .delay = 2, .delayUp = 350},
[pmSysPowered] = { .call = pmPowerSystem, .delay = 2, .delayUp = 2},
[pmSysBootSetup] = { .call = pmSysBoot, .delay = 2, .delayUp = 2},
[pmSysRunning] = { .call = pmRunSystem, .delay = 2, .delayUp = 2},
Expand Down

0 comments on commit 5c6dbb7

Please sign in to comment.