mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 18:41:11 +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
22 lines
544 B
C
22 lines
544 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.
|
|
*/
|
|
|
|
/* Temperature sensor module for LM4 chip */
|
|
|
|
#ifndef __CHIP_TEMP_SENSOR_H
|
|
#define __CHIP_TEMP_SENSOR_H
|
|
|
|
struct temp_sensor_t;
|
|
|
|
/* Temperature polling function. */
|
|
int chip_temp_sensor_poll(void);
|
|
|
|
/* Temperature reading function. Return temperature in K. */
|
|
int chip_temp_sensor_get_val(int idx);
|
|
|
|
int chip_temp_sensor_init(void);
|
|
|
|
#endif /* __CHIP_TEMP_SENSOR_H */
|