mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
remove nvs from board_profile
This commit is contained in:
@@ -273,7 +273,7 @@ static void setup_commands(std::shared_ptr<Commands> & commands) {
|
|||||||
ShellContext::MAIN,
|
ShellContext::MAIN,
|
||||||
CommandFlags::ADMIN,
|
CommandFlags::ADMIN,
|
||||||
string_vector{F_(set), F_(board_profile)},
|
string_vector{F_(set), F_(board_profile)},
|
||||||
string_vector{F_(name_mandatory), F_(nvs_optional)},
|
string_vector{F_(name_mandatory)},
|
||||||
[](Shell & shell, const std::vector<std::string> & arguments) {
|
[](Shell & shell, const std::vector<std::string> & arguments) {
|
||||||
std::vector<int8_t> data; // led, dallas, rx, tx, button, phy_type, eth_power, eth_phy_addr, eth_clock_mode
|
std::vector<int8_t> data; // led, dallas, rx, tx, button, phy_type, eth_power, eth_phy_addr, eth_clock_mode
|
||||||
std::string board_profile = Helpers::toUpper(arguments.front());
|
std::string board_profile = Helpers::toUpper(arguments.front());
|
||||||
@@ -281,9 +281,7 @@ static void setup_commands(std::shared_ptr<Commands> & commands) {
|
|||||||
shell.println("Invalid board profile (S32, E32, E32V2, MH-ET, NODEMCU, LOLIN, OLIMEX, OLIMEXPOE, C3MINI, S2MINI, S3MINI, S32S3, CUSTOM)");
|
shell.println("Invalid board profile (S32, E32, E32V2, MH-ET, NODEMCU, LOLIN, OLIMEX, OLIMEXPOE, C3MINI, S2MINI, S3MINI, S32S3, CUSTOM)");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (arguments.size() == 2 && Helpers::toLower(arguments.back()) == "nvs") {
|
|
||||||
to_app(shell).nvs_.putString("boot", board_profile.c_str());
|
|
||||||
}
|
|
||||||
to_app(shell).webSettingsService.update([&](WebSettings & settings) {
|
to_app(shell).webSettingsService.update([&](WebSettings & settings) {
|
||||||
settings.board_profile = board_profile.c_str();
|
settings.board_profile = board_profile.c_str();
|
||||||
settings.led_gpio = data[0];
|
settings.led_gpio = data[0];
|
||||||
|
|||||||
@@ -147,7 +147,6 @@ MAKE_WORD_CUSTOM(sensorid_optional, "[sensor ID]")
|
|||||||
MAKE_WORD_CUSTOM(id_optional, "[id|hc]")
|
MAKE_WORD_CUSTOM(id_optional, "[id|hc]")
|
||||||
MAKE_WORD_CUSTOM(partitionname_optional, "[partitionname]")
|
MAKE_WORD_CUSTOM(partitionname_optional, "[partitionname]")
|
||||||
MAKE_WORD_CUSTOM(data_optional, "[data]")
|
MAKE_WORD_CUSTOM(data_optional, "[data]")
|
||||||
MAKE_WORD_CUSTOM(nvs_optional, "[nvs]")
|
|
||||||
MAKE_WORD_CUSTOM(offset_optional, "[offset]")
|
MAKE_WORD_CUSTOM(offset_optional, "[offset]")
|
||||||
MAKE_WORD_CUSTOM(length_optional, "[length]")
|
MAKE_WORD_CUSTOM(length_optional, "[length]")
|
||||||
MAKE_WORD_CUSTOM(typeid_mandatory, "<type ID>")
|
MAKE_WORD_CUSTOM(typeid_mandatory, "<type ID>")
|
||||||
|
|||||||
Reference in New Issue
Block a user