mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 11:17:20 +02:00
Merge branch 'bugfix/fix_c3_dig_dibas_limit_bug_to_v5.0' into 'release/v5.0'
C3: Fix system not stable bug when dbias storing in efuse is bigger than 27 (v5.0) See merge request espressif/esp-idf!20499
This commit is contained in:
@ -321,8 +321,8 @@ static void set_rtc_dig_dbias()
|
|||||||
if (chip_version >= 3) {
|
if (chip_version >= 3) {
|
||||||
dig_dbias = get_dig_dbias_by_efuse(chip_version);
|
dig_dbias = get_dig_dbias_by_efuse(chip_version);
|
||||||
if (dig_dbias != 0) {
|
if (dig_dbias != 0) {
|
||||||
if (dig_dbias + 4 > 28) {
|
if (dig_dbias + 4 > 31) {
|
||||||
dig_dbias = 28;
|
dig_dbias = 31;
|
||||||
} else {
|
} else {
|
||||||
dig_dbias += 4;
|
dig_dbias += 4;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user