dashboard
repositories
filestore
activity
search
login
main
/
SB
水泵
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
首次提交PWM和输入捕捉调试完毕
tao_z
2021-04-11
6d4ddf7d2a2cd72c58876257700b34c63e5063d3
[SB.git]
/
APP
/
INC
/
adc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef APP_ADC_H
#define APP_ADC_H
#include "stm8s_adc1.h"
/*初始化配置ADC*/
void ADCconfig(void);
/*执行adc任务*/
void ADCTask(void);
/*获取ADC1数字量*/
int GetADC1Value(int ch);
#endif /* __ADC_H */