mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-28 02:35:28 +00:00
This covers modules which need to initialize before task_start(), but don't particularly care in what order they're initialized. Signed-off-by: Randall Spangler <rspangler@chromium.org> BUG=none TEST=if it boots, it works Change-Id: I69829aac8d1c3c14ee04916a794b84bbf03a09eb
30 lines
569 B
C
30 lines
569 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.
|
|
*/
|
|
|
|
/* ADC interface for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_ADC_H
|
|
#define __CROS_EC_ADC_H
|
|
|
|
#include "common.h"
|
|
#include "board.h"
|
|
|
|
/* Data structure to define ADC channels. */
|
|
struct adc_t
|
|
{
|
|
const char* name;
|
|
int sequencer;
|
|
int factor_mul;
|
|
int factor_div;
|
|
int shift;
|
|
int channel;
|
|
int flag;
|
|
};
|
|
|
|
/* Read ADC channel. */
|
|
int adc_read_channel(enum adc_channel ch);
|
|
|
|
#endif /* __CROS_EC_ADC_H */
|