Hardware monitor refactoring, part 2

This commit is contained in:
RichardG867
2020-05-18 22:54:59 -03:00
parent 928c494e6c
commit 2ff06457d5
9 changed files with 382 additions and 180 deletions

View File

@@ -214,7 +214,7 @@ machine_at_p3bf_init(const machine_t *model)
3000 /* Power */
}, { /* temperatures */
30, /* MB */
0, /* unused */
30, /* JTPWR */
30 /* CPU */
}, { /* voltages */
2050, /* VCORE (2.05V by default) */

View File

@@ -135,7 +135,7 @@ machine_at_cubx_init(const machine_t *model)
3000 /* Power */
}, { /* temperatures */
30, /* MB */
0, /* unused */
30, /* JTPWR */
30 /* CPU */
}, { /* voltages */
2050, /* VCORE (2.05V by default) */

View File

@@ -847,7 +847,8 @@ machine_at_p5mms98_init(const machine_t *model)
3000, /* CPU */
3000 /* Chassis */
}, { /* temperatures */
28 /* CPU (locked at 28?) */
0, /* unused */
30 /* CPU */
}, { /* voltages */
3300, /* VCORE (3.3V by default) */
3300, /* VIO (3.3V) */
@@ -873,6 +874,7 @@ machine_at_p5mms98_init(const machine_t *model)
}
hwm_set_values(machine_hwm);
device_add(&lm78_device);
device_add(&lm75_1_4a_device);
return ret;
}