mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-31 02:51:26 +00:00
Until we solve the I2C hanging issue, we need a reliable way to read temperature. Add back LPC temperature read command that actually trigger a I2C read. Signed-off-by: Vic Yang <victoryang@google.com> BUG=chrome-os-partner:8452,chrome-os-partner:8495 TEST=none Change-Id: Icddd1fe3c1f09889bca633af19041a8aca582de9
23 lines
709 B
C
23 lines
709 B
C
/* Copyright (c) 2011 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 commands for Chrome EC */
|
|
/* This LPC command only serves as a workaround to provide reliable temperature
|
|
* reading method until we solve the I2C hanging issue. Remove this when
|
|
* possible. */
|
|
|
|
#ifndef __CROS_EC_TEMP_SENSOR_COMMANDS_H
|
|
#define __CROS_EC_TEMP_SENSOR_COMMANDS_H
|
|
|
|
#include "common.h"
|
|
|
|
/* Initializes the module. */
|
|
int temp_sensor_commands_init(void);
|
|
|
|
/* Host command handlers. */
|
|
enum lpc_status temp_sensor_command_get_readings(uint8_t *data);
|
|
|
|
#endif /* __CROS_EC_TEMP_SENSOR_COMMANDS_H */
|