Skip to content

Commit

Permalink
fix ESP32-U4WDH chip detection by ESP.getChipModel() (#10696)
Browse files Browse the repository at this point in the history
* fixes chip detection for ESP32-U4WDH
  • Loading branch information
mstegen authored Dec 9, 2024
1 parent 77c69c3 commit 19e4d0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cores/esp32/Esp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ const char *EspClass::getChipModel(void) {
return "ESP32-D0WD";
}
case EFUSE_RD_CHIP_VER_PKG_ESP32D2WDQ5: return "ESP32-D2WD";
case EFUSE_RD_CHIP_VER_PKG_ESP32PICOD2: return "ESP32-PICO-D2";
case EFUSE_RD_CHIP_VER_PKG_ESP32U4WDH: return "ESP32-U4WDH";
case EFUSE_RD_CHIP_VER_PKG_ESP32PICOD4: return "ESP32-PICO-D4";
case EFUSE_RD_CHIP_VER_PKG_ESP32PICOV302: return "ESP32-PICO-V3-02";
case EFUSE_RD_CHIP_VER_PKG_ESP32D0WDR2V3: return "ESP32-D0WDR2-V3";
Expand Down

0 comments on commit 19e4d0d

Please sign in to comment.