fix system not stable bug when dbias storing in efuse is bigger than 27

This commit is contained in:
cje 2022-09-30 19:24:51 +08:00
parent 59a5bf61e9
commit 4dddb6d8e8

View File

@ -321,8 +321,8 @@ static void set_rtc_dig_dbias()
if (chip_version >= 3) {
dig_dbias = get_dig_dbias_by_efuse(chip_version);
if (dig_dbias != 0) {
if (dig_dbias + 4 > 28) {
dig_dbias = 28;
if (dig_dbias + 4 > 31) {
dig_dbias = 31;
} else {
dig_dbias += 4;
}