M module-bsp/board/rt1051/puretx/board.cpp => module-bsp/board/rt1051/puretx/board.cpp +3 -5
@@ 1,4 1,4 @@
-// Copyright (c) 2017-2023, Mudita Sp. z.o.o. All rights reserved.
+// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#include "bsp.hpp"
@@ 36,11 36,9 @@ namespace bsp
switch (state) {
case RebootState::None:
break;
- case RebootState::Poweroff:
- board_shutdown();
- break;
case RebootState::Reboot:
- board_reset();
+ case RebootState::Poweroff:
+ board_reset(); // Reset will result in powering off the CPU if USB is disconnected due to hardware design
break;
}
M pure_changelog.md => pure_changelog.md +2 -1
@@ 3,7 3,8 @@
## Unreleased
### Fixed
-Fixed no response when editing a contact via Center to have the same number as another
+* Fixed no response when editing a contact via Center to have the same number as another.
+* Fixed occasional screen backlight flash when turning off the phone.
### Added