Skip to content

Commit 444e391

Browse files
committed
Fix rtc_table_get_parsed_efuse_value
1 parent 689ef02 commit 444e391

File tree

1 file changed

+1
-1
lines changed
  • esp-hal/src/soc/esp32s2/efuse

1 file changed

+1
-1
lines changed

esp-hal/src/soc/esp32s2/efuse/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ impl Efuse {
154154

155155
let info = &RAW_MAP[tag];
156156
let efuse_val = Self::rtc_table_get_raw_efuse_value(tag) * info.multiplier;
157-
efuse_val + info.base + Self::rtc_table_get_raw_efuse_value(info.dependency)
157+
efuse_val + info.base + Self::rtc_table_get_parsed_efuse_value(info.dependency)
158158
}
159159

160160
/// Calculates the coeff_b from the calculate_characterization_coefficient

0 commit comments

Comments
 (0)