-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadc.h
27 lines (22 loc) · 856 Bytes
/
adc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/******************************************************************************************
File Name : main.c
Author&Editor Name : Ananth Deshpande
Professional Masters in Embedded Systems
Fall 2021, UCB.
Editor email id : [email protected]
IDE used for Coding : ccstudio IDE
Compiler : GCC
Date : 4th December 2021
Info on Code obtained from other sources:
*******************************************************************************************/
#ifndef ADC_H_
#define ADC_H_
/***************************************************************************
* Initialise ADC
*
* Parameters: None
*
* Returns: void
**************************************************************************/
void ADC_init();
#endif /* ADC_H_ */