Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
hardware_adc.h
- Committer:
- rajathr
- Date:
- 2021-10-29
- Revision:
- 0:716b93ab9a58
- Child:
- 1:c125f4e65df7
File content as of revision 0:716b93ab9a58:
#ifndef __HARDWARE_ADC_H_ #define __HARDWARE_ADC_H_ #ifdef __cplusplus extern "C" { #endif #include "main.h" /*Defining function that initializes ADC3 FOR 3 CHANNELS - 5 6 7*/ void initADC3_567_withDMA(void); //Defining Function that initializes ADC3 FOR 1 CHANNEL - CHANNEL 5 void initADC3_5_withDMA(void); //Definig Function that enables ADC3 void enableADC3(void); #ifdef __cplusplus } #endif #endif /*__HARDWARE_ADC_H_ */