1 #ifndef I2C_DS_1621_DRIVER_H 2 #define I2C_DS_1621_DRIVER_H 55 #define DS1621_CMD_READ_TEMP 0xaa 56 #define DS1621_CMD_CSR_ACCESS 0xac 57 #define DS1621_CMD_START_CONV 0xee 60 #define DS1621_CSR_DONE (1<<7) 61 #define DS1621_CSR_TEMP_HI (1<<6) 62 #define DS1621_CSR_TEMP_LO (1<<5) 63 #define DS1621_CSR_NVMEM_BSY (1<<4) 64 #define DS1621_CSR_OUT_POL (1<<1) 65 #define DS1621_CSR_1SHOT (1<<0)