21 lines
905 B
C
21 lines
905 B
C
/*******************************************************************************
|
|
* @file adc.h
|
|
* @author: MQjehovah mail:MQjehovah@hotmail.com
|
|
* @version 1.0.0
|
|
* @date 2020.0.23
|
|
* @brief
|
|
******************************************************************************
|
|
* @attention
|
|
*******************************************************************************/
|
|
#ifndef __ADC_H
|
|
#define __ADC_H
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "stm32f10x_conf.h"
|
|
/* Definition ----------------------------------------------------------------*/
|
|
|
|
/* Exported Functions --------------------------------------------------------*/
|
|
void ADCCalibration_BeforStart(void);
|
|
|
|
#endif
|
|
/*********************************END OF FILE**********************************/
|