blob: a2c71df68c5b62a6503d6219a855e72f125e5a5b [file] [log] [blame]
liubin281ac462023-07-19 14:22:54 +08001/*****************************************************************************
2* Copyright Statement:
3* --------------------
4* This software is protected by Copyright and the information contained
5* herein is confidential. The software may not be copied and the information
6* contained herein may not be used or disclosed except with the written
7* permission of Quectel Co., Ltd. 2019
8*
9*****************************************************************************/
10/*****************************************************************************
11 *
12 * Filename:
13 * ---------
14 * ql_adc.h
15 *
16 * Project:
17 * --------
18 * OpenLinux
19 *
20 * Description:
21 * ------------
22 * ADC API defines.
23 *
24 *
25 *============================================================================
26 * HISTORY
27 *----------------------------------------------------------------------------
28 * WHO WHEN WHAT
29 *----------------------------------------------------------------------------
30 * Carola.Zhang 20/11/2019 Create.
31 ****************************************************************************/
32
33#ifndef __QL_ADC_H__
34#define __QL_ADC_H__
35
36typedef enum {
37 QADC_NONE = -1,
38 ADC0 = 0,
39 ADC1 = 1,
40 QADC_END
41}Enum_QADC;
42
43
44int ql_adc_show(Enum_QADC qadc);
45
46
47#endif