Skip to content

Commit

Permalink
Update settings.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartpittaway committed Mar 7, 2024
1 parent 05839be commit a3b4131
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ESPController/src/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ void writeSetting(nvs_handle_t handle, const char *key, int16_t value)
}
void writeSetting(nvs_handle_t handle, const char *key, uint32_t value)
{
ESP_LOGD(TAG, "Writing (%s)=%i", key, value);
ESP_LOGD(TAG, "Writing (%s)=%u", key, value);
ESP_ERROR_CHECK(nvs_set_u32(handle, key, value));
}
void writeSetting(nvs_handle_t handle, const char *key, int32_t value)
Expand Down

0 comments on commit a3b4131

Please sign in to comment.