This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
CMS3in1/2.Blade/1.Software/STM32/VM_App/VM_ADC.h

14 lines
273 B
C
Raw Normal View History

#ifndef __VM_ADC_H
#define __VM_ADC_H
#include "sys.h"
extern ADC_HandleTypeDef ADC2_Handler;
extern ADC_HandleTypeDef ADC3_Handler;
void ADC2_Init(void); //ADCͨ<43><CDA8><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC>
void ADC3_Init(void); //ADCͨ<43><CDA8><EFBFBD><EFBFBD>ʼ<EFBFBD><CABC>
u32 Get_Adc_Value(ADC_HandleTypeDef* hadc);
#endif