ACS board devs go to on first #530

Merged
muellerr merged 3 commits from improvement_acs_devs_go_to_on into develop 2023-03-27 17:02:17 +02:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 80ad923181 - Show all commits

View File

@ -20,6 +20,7 @@ will consitute of a breaking change warranting a new major release:
- Proper Faulty/External Control handling for the dual lane assemblies.
- ACS board devices: Go to ON mode instead of going to NORMAL mode directly.
- SUS device handlers: Go to ON mode on startup instead of NORMAL mode.
## Changed

View File

@ -20,7 +20,7 @@ void SusHandler::doStartUp() {
}
if (internalState == InternalState::STARTUP) {
if (commandExecuted) {
setMode(MODE_NORMAL);
setMode(MODE_ON);
internalState = InternalState::NONE;
commandExecuted = false;
}