We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdf377b commit edff45aCopy full SHA for edff45a
framework_lib/src/power.rs
@@ -230,6 +230,14 @@ pub fn print_thermal(ec: &CrosEc) {
230
println!(" PECI: {:>4}", TempSensor::from(temps[4]));
231
}
232
233
+ Some(Platform::Framework12IntelGen13) => {
234
+ println!(" F75303_CPU: {:>4}", TempSensor::from(temps[0]));
235
+ println!(" F75303_Skin: {:>4}", TempSensor::from(temps[1]));
236
+ println!(" F75303_Local: {:>4}", TempSensor::from(temps[2]));
237
+ println!(" Battery: {:>4}", TempSensor::from(temps[3]));
238
+ println!(" PECI: {:>4}", TempSensor::from(temps[4]));
239
+ }
240
+
241
Some(
242
Platform::Framework13Amd7080
243
| Platform::Framework13AmdAi300
0 commit comments