b.liu | 4e243dc | 2023-11-27 11:20:00 +0800 | [diff] [blame] | 1 | #include <stdio.h> |
2 | #include <stdlib.h> | ||||
3 | #include <string.h> | ||||
4 | |||||
5 | #ifdef __cplusplus | ||||
6 | extern "C" { | ||||
7 | #endif | ||||
8 | |||||
9 | typedef enum ADC_CHANNEL_ENUM | ||||
10 | { | ||||
11 | QADC_NONE = 0, | ||||
12 | ADC0 =1, | ||||
13 | ADC1 =2, | ||||
14 | ADC2 =3, | ||||
15 | QADC_END | ||||
16 | }ADC_CHANNEL_E; | ||||
17 | |||||
18 | int qser_adc_show(ADC_CHANNEL_E qadc); | ||||
19 | |||||
20 | #ifdef __cplusplus | ||||
21 | } | ||||
22 | #endif |