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

14 lines
273 B
C
Raw Permalink Normal View History

2024-11-19 09:19:21 +00:00
#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