We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ESP32D0WR2
custom module with ESP32D0WDR2
no relevant
v2.0.7
arduino IDE
windows 10
80M
yes
921600
ESP.getChipModel() returns Unknown, but it should return ESP32-D0WDR2-V3 revision is returned correctly by ESP.getChipRevision() (3 in this case).
arduino-esp32/cores/esp32/Esp.cpp
Line 290 in b98255d
uint32_t chipId = 0; void get_chip_id(void){ for(int i=0; i<17; i=i+8) { chipId |= ((ESP.getEfuseMac() >> (40 - i)) & 0xff) << i; } printf("ESP32 Chip model = %s Rev %d\n", ESP.getChipModel(), ESP.getChipRevision()); printf("%d cores\n", ESP.getChipCores()); Serial.print("Chip ID: "); Serial.println(chipId); }
### Debug Message ESP32 Chip model = Unknown Rev 3 2 cores Chip ID: xxxxxxx
It works fine with other variants, like D0WDQ6 for example.
The text was updated successfully, but these errors were encountered:
Likely resolved by pr #7958
Sorry, something went wrong.
this commit was merged into 2.0.7?
not part of 2.0.7, but will be of 2.0.8
alright, well noted, i will modify my local version for now.
No branches or pull requests
Board
ESP32D0WR2
Device Description
custom module with ESP32D0WDR2
Hardware Configuration
no relevant
Version
v2.0.7
IDE Name
arduino IDE
Operating System
windows 10
Flash frequency
80M
PSRAM enabled
yes
Upload speed
921600
Description
ESP.getChipModel() returns Unknown, but it should return ESP32-D0WDR2-V3
revision is returned correctly by ESP.getChipRevision() (3 in this case).
arduino-esp32/cores/esp32/Esp.cpp
Line 290 in b98255d
Sketch
Other Steps to Reproduce
It works fine with other variants, like D0WDQ6 for example.
I have checked existing issues, online documentation and the Troubleshooting Guide
The text was updated successfully, but these errors were encountered: