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.

hardware_info.h 273B

12345678910111213
  1. #ifndef __HW_INFO__
  2. #define __HW_INFO__
  3. /* 获取硬盘温度 */
  4. static int get_sata_hddtemp(char *device, int *value);
  5. /* 获取cpu使用率 */
  6. double get_sysCpuUsage(void);
  7. /* 获取内存使用率 */
  8. float cal_mem_occupy(void);
  9. /* 获取cpu温度 */
  10. int get_cpu_temp(int file_type);
  11. #endif