Skip to content

Commit a374165

Browse files
committed
Fix version checking for chip_info.full_revision
# Conflicts: # wled00/util.cpp
1 parent 1531776 commit a374165

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wled00/util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ String generateDeviceFingerprint() {
782782
esp_chip_info(&chip_info);
783783
esp_efuse_mac_get_default((uint8_t*)fp);
784784
fp[1] ^= ESP.getFlashChipSize();
785-
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 3)
785+
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 4)
786786
fp[0] ^= chip_info.full_revision | (chip_info.model << 16);
787787
#else
788788
fp[0] ^= chip_info.revision | (chip_info.model << 16);

0 commit comments

Comments
 (0)