SLS/Software/Core/Inc/adc.h

9 lines
207 B
C
Raw Normal View History

#ifndef INC_ADC
#define INC_ADC
#include "stm32f0xx_hal_adc.h"
void adc_init(ADC_HandleTypeDef* hadc);
void adc_loop(ADC_HandleTypeDef* hadc);
void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef* hadc);
#endif