Skip to content

Commit

Permalink
corrected OTA example for ESP-IDF
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Schultz committed Jan 2, 2024
1 parent 9cfcc18 commit 870c6fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// Firmware title and version used to compare with remote version, to check if an update is needed.
// Title needs to be the same and version needs to be different --> downgrading is possible
constexpr char CURRENT_FIRMWARE_TITLE[] = "ESP32";
const std::string CURRENT_FIRMWARE_TITLE = "ESP32";
constexpr char CURRENT_FIRMWARE_VERSION[] = "1.0.0";

// Maximum amount of retries we attempt to download each firmware chunck over MQTT
Expand Down

0 comments on commit 870c6fd

Please sign in to comment.