You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213 |
- #ifndef __HW_INFO__
- #define __HW_INFO__
-
- /* 获取硬盘温度 */
- static int get_sata_hddtemp(char *device, int *value);
- /* 获取cpu使用率 */
- double get_sysCpuUsage(void);
- /* 获取内存使用率 */
- float cal_mem_occupy(void);
- /* 获取cpu温度 */
- int get_cpu_temp(int file_type);
-
- #endif
|