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.
CMS/1.Software/STM32/USB_HS _ TEST/VM_App/VM_ADC.h
2024-11-19 17:19:21 +08:00

14 lines
273 B
C

#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ͨµÀ³õʼ»¯
void ADC3_Init(void); //ADCͨµÀ³õʼ»¯
u32 Get_Adc_Value(ADC_HandleTypeDef* hadc);
#endif