We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4c0548 commit 5a9118dCopy full SHA for 5a9118d
1 file changed
framework_lib/src/power.rs
@@ -221,6 +221,15 @@ pub fn print_thermal(ec: &CrosEc) {
221
println!(" F57397_VCCGT: {:>4}", TempSensor::from(temps[5]));
222
}
223
224
+
225
+ Some(Platform::IntelCoreUltra1) => {
226
+ println!(" F75303_Local: {:>4}", TempSensor::from(temps[0]));
227
+ println!(" F75303_CPU: {:>4}", TempSensor::from(temps[1]));
228
+ println!(" Battery: {:>4}", TempSensor::from(temps[2]));
229
+ println!(" F75303_DDR: {:>4}", TempSensor::from(temps[3]));
230
+ println!(" PECI: {:>4}", TempSensor::from(temps[4]));
231
+ }
232
233
Some(Platform::Framework13Amd7080 | Platform::Framework16Amd7080) => {
234
println!(" F75303_Local: {:>4}", TempSensor::from(temps[0]));
235
println!(" F75303_CPU: {:>4}", TempSensor::from(temps[1]));
0 commit comments