From 46e67437717975c10c62775a3f40bec84ac4f44c Mon Sep 17 00:00:00 2001 From: jacqueline Date: Wed, 20 Mar 2024 11:15:33 +1100 Subject: [PATCH] version bump, plus prep for lock switch hack --- src/system_fsm/booting.cpp | 2 +- tools/cmake/common.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/system_fsm/booting.cpp b/src/system_fsm/booting.cpp index 14fed92e..e911932c 100644 --- a/src/system_fsm/booting.cpp +++ b/src/system_fsm/booting.cpp @@ -102,7 +102,7 @@ auto Booting::entry() -> void { sServices->bluetooth().Enable(); } - sServices->nvs().LockPolarity(true); + sServices->nvs().LockPolarity(false); BootComplete ev{.services = sServices}; events::Audio().Dispatch(ev); diff --git a/tools/cmake/common.cmake b/tools/cmake/common.cmake index 69013448..80436023 100644 --- a/tools/cmake/common.cmake +++ b/tools/cmake/common.cmake @@ -5,7 +5,7 @@ # For more information about build system see # https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html -set(PROJECT_VER "0.7.0") +set(PROJECT_VER "0.7.1") # esp-idf sets the C++ standard weird. Set cmake vars to match. set(CMAKE_CXX_STANDARD 23)