max1617.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: max1617.h,v 1.1 2001/04/02 09:59:08 davem Exp $ */
  2. #ifndef _MAX1617_H
  3. #define _MAX1617_H
  4. #define MAX1617_AMB_TEMP 0x00 /* Ambient temp in C */
  5. #define MAX1617_CPU_TEMP 0x01 /* Processor die temp in C */
  6. #define MAX1617_STATUS 0x02 /* Chip status bits */
  7. /* Read-only versions of changable registers. */
  8. #define MAX1617_RD_CFG_BYTE 0x03 /* Config register */
  9. #define MAX1617_RD_CVRATE_BYTE 0x04 /* Temp conversion rate */
  10. #define MAX1617_RD_AMB_HIGHLIM 0x05 /* Ambient high limit */
  11. #define MAX1617_RD_AMB_LOWLIM 0x06 /* Ambient low limit */
  12. #define MAX1617_RD_CPU_HIGHLIM 0x07 /* Processor high limit */
  13. #define MAX1617_RD_CPU_LOWLIM 0x08 /* Processor low limit */
  14. /* Write-only versions of the same. */
  15. #define MAX1617_WR_CFG_BYTE 0x09
  16. #define MAX1617_WR_CVRATE_BYTE 0x0a
  17. #define MAX1617_WR_AMB_HIGHLIM 0x0b
  18. #define MAX1617_WR_AMB_LOWLIM 0x0c
  19. #define MAX1617_WR_CPU_HIGHLIM 0x0d
  20. #define MAX1617_WR_CPU_LOWLIM 0x0e
  21. #define MAX1617_ONESHOT 0x0f
  22. #endif /* _MAX1617_H */