Skip to content

Commit

Permalink
Working code. Continue the fine tuning with the webserver to expose a…
Browse files Browse the repository at this point in the history
…ll functionalities.
  • Loading branch information
electronick-co committed May 7, 2023
1 parent e4d900d commit a444c6c
Show file tree
Hide file tree
Showing 4 changed files with 191 additions and 125 deletions.
4 changes: 2 additions & 2 deletions components/nvsfuncs/nvs_funcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ esp_err_t nvs_delete_layer(uint8_t delete_layer_num)
error = nvs_open(LAYER_NAMESPACE, NVS_READWRITE, &nvs_handle);
if (error == ESP_OK)
{
ESP_LOGE(TAG, "LAYER_NAMESPACE open ---OK");
ESP_LOGI(TAG, "LAYER_NAMESPACE open ---OK");
}
else
{
Expand All @@ -369,7 +369,7 @@ esp_err_t nvs_delete_layer(uint8_t delete_layer_num)
error = nvs_get_u8(nvs_handle, LAYER_NUM_KEY, &layer_num);
if (error == ESP_OK)
{
ESP_LOGE(TAG, "LAYER KEY FOUND ---OK");
ESP_LOGI(TAG, "LAYER KEY FOUND ---OK");
}
else
{
Expand Down
Loading

0 comments on commit a444c6c

Please sign in to comment.