mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 10:45:22 +00:00
A temperature polling task is added to achieve temporal correction and also reduce the latency of reading temperature. Factor out sensor specific part to keep code clean. Signed-off-by: Vic Yang <victoryang@chromium.org> BUG=chrome-os-partner:7801 TEST=On link, 'temps' shows all temperature readings. Cover each sensor with hand and see object temperature rise. Compilation succeeded on bds/adv/daisy/discovery. Change-Id: I3c44c8b2e3ab2aa9ce640d3fc25e7fba56534b86
31 lines
876 B
C
31 lines
876 B
C
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* TMP006 temperature sensor module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_TMP006_H
|
|
#define __CROS_EC_TMP006_H
|
|
|
|
#define TMP006_ADDR(PORT,REG) ((PORT << 16) + REG)
|
|
#define TMP006_PORT(ADDR) (ADDR >> 16)
|
|
#define TMP006_REG(ADDR) (ADDR & 0xffff)
|
|
|
|
struct tmp006_t {
|
|
const char* name;
|
|
/* I2C address formed by TMP006_ADDR macro. */
|
|
int addr;
|
|
};
|
|
|
|
/* Poll all TMP006 sensors. Return 0 on success. */
|
|
int tmp006_poll(void);
|
|
|
|
/* Get the last polled value of a sensor. Return temperature in K.
|
|
* The low bit in idx indicate whether to read die temperature or
|
|
* object temperature. The other bits serve as internal index to tmp006
|
|
* module. */
|
|
int tmp006_get_val(int idx);
|
|
|
|
#endif /* __CROS_EC_TMP006_H */
|