1
2
3
4
5
6
7
8
9
10
11
12
13
14
| /**
| ******************************************************************************
| * @file : ADC.h
| * @brief : Header for ADC.c file.
| * This file contains the user functions defines of the application.
| ******************************************************************************
| */
| #ifndef __ADC_H__
| #define __ADC_H__
| #include <stdint.h>
|
| int ADCProcess2(void);
|
| #endif /* __ADC_H__ */
|
|