@@ 20,6 20,7 @@
* Fixed problem with deleting files during Relaxation session.
* Fixed occasional crash on system startup.
* Fixed occasional USB crash when USB cable was disconnected during files upload
+* Fixed back button power off timer changed to 10s
### Added
@@ 1,4 1,4 @@
-// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
+// Copyright (c) 2017-2023, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#pragma once
@@ 11,6 11,6 @@ class PowerOffSequence : public GenericLongPressSequence<KeyMap::Back>
public:
explicit PowerOffSequence(sys::Service &service)
: GenericLongPressSequence<KeyMap::Back>{sys::TimerFactory::createSingleShotTimer(
- &service, "poffseq", std::chrono::milliseconds{5000}, [this](auto &) { handleTimer(); })}
+ &service, "poffseq", std::chrono::milliseconds{9000}, [this](auto &) { handleTimer(); })}
{}
};