Removed phone sds timeout (#1372)

This commit is contained in:
Ben Meadors
2022-04-12 13:04:24 +00:00
committed by GitHub
parent b59368ca3c
commit 794167c701
5 changed files with 6 additions and 14 deletions

View File

@@ -363,9 +363,6 @@ void PowerFSM_setup()
if (meshSds != UINT32_MAX)
powerFSM.add_timed_transition(lowPowerState, &stateSDS, meshSds * 1000, NULL, "mesh timeout");
// removing for now, because some users don't even have phones
// powerFSM.add_timed_transition(lowPowerState, &stateSDS, getPref_phone_sds_timeout_sec() * 1000, NULL, "phone
// timeout");
powerFSM.run_machine(); // run one interation of the state machine, so we run our on enter tasks for the initial DARK state
}