2 * Texas Instruments TMP105 Temperature Sensor I2C messages
4 * Browse the data sheet:
6 * http://www.ti.com/lit/gpn/tmp105
8 * Copyright (C) 2012 Alex Horn <alex.horn@cs.ox.ac.uk>
9 * Copyright (C) 2008-2012 Andrzej Zaborowski <balrogg@gmail.com>
11 * This work is licensed under the terms of the GNU GPL, version 2 or
12 * later. See the COPYING file in the top-level directory.
14 #ifndef QEMU_TMP105_MSGS_H
15 #define QEMU_TMP105_MSGS_H
19 * @TMP105_REG_TEMPERATURE: Temperature register
20 * @TMP105_REG_CONFIG: Configuration register
21 * @TMP105_REG_T_LOW: Low temperature register (also known as T_hyst)
22 * @TMP105_REG_T_HIGH: High temperature register (also known as T_OS)
24 * The following temperature sensors are
25 * compatible with the TMP105 registers:
43 typedef enum TMP105Reg
{
44 TMP105_REG_TEMPERATURE
= 0,