Skip to content

Commit

Permalink
Merge pull request #116 from lisekt84/patch-1
Browse files Browse the repository at this point in the history
[Fix] get minimal AT ESP32 version
  • Loading branch information
MaJerle committed May 11, 2022
2 parents e605efe + 6b39ece commit f0a2e05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lwesp/src/lwesp/lwesp.c
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ lwesp_get_min_at_fw_version(lwesp_sw_version_t* const version) {
#endif /* LWESP_CFG_ESP8266 */
#if LWESP_CFG_ESP32
} else if (esp.m.device == LWESP_DEVICE_ESP32) {
lwesp_set_fw_version(version, LWESP_MIN_AT_VERSION_MAJOR_ESP8266, LWESP_MIN_AT_VERSION_MINOR_ESP32, LWESP_MIN_AT_VERSION_PATCH_ESP32);
lwesp_set_fw_version(version, LWESP_MIN_AT_VERSION_MAJOR_ESP32, LWESP_MIN_AT_VERSION_MINOR_ESP32, LWESP_MIN_AT_VERSION_PATCH_ESP32);
#endif /* LWESP_CFG_ESP32 */
#if LWESP_CFG_ESP32_C3
} else if (esp.m.device == LWESP_DEVICE_ESP32_C3) {
Expand Down

0 comments on commit f0a2e05

Please sign in to comment.