STM32内部adc多通道扫描模式+DMA传输

时间:2022-05-30 08:39:20
【文件属性】:

文件名称:STM32内部adc多通道扫描模式+DMA传输

文件大小:321KB

文件格式:RAR

更新时间:2022-05-30 08:39:20

STM32 ADC DMA

#include "adc.h" #include "delay.h" void ADC_Config(void)//初始化ADC { ADC_InitTypeDef ADC_InitStructure; RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1, ENABLE ); //开启ADC1通道时钟 RCC_ADCCLKConfig(RCC_PCLK2_Div6); //配置ADC时钟,为PCLK2的6分频,即12Hz ADC_DeInit(ADC1); //复位ADC1 ADC_TempSensorVrefintCmd(ENABLE); //打开温度传感器 ADC_InitStructure.ADC_Mode = ADC_Mode_Independent; //独立ADC模式 ADC_InitStructure.ADC_ScanConvMode = ENABLE; //使用扫描模式 ADC_InitStructure.ADC_Co


【文件预览】:
OBJ
----test.hex(36KB)
CM3
----core_cm3.c(17KB)
----core_cm3.h(84KB)
----system_stm32f10x.h(2KB)
----startup_stm32f10x_hd.s(15KB)
----system_stm32f10x.c(36KB)
----stm32f10x.h(619KB)
MYK
----ADC()
--------adc.h(119B)
--------adc.c(2KB)
----GPIO()
--------GPIO.h(93B)
--------GPIO.c(590B)
----USART()
--------usart.h(123B)
--------retarge.c(539B)
--------usart.c(2KB)
----DMA()
--------dma.h(62B)
--------dma.c(1KB)
----DELAY()
--------delay.h(127B)
--------delay.c(351B)
FWlib
----inc()
--------stm32f10x_adc.h(21KB)
--------stm32f10x_tim.h(51KB)
--------stm32f10x_usart.h(16KB)
--------stm32f10x_dac.h(15KB)
--------stm32f10x_bkp.h(7KB)
--------stm32f10x_dbgmcu.h(4KB)
--------stm32f10x_pwr.h(4KB)
--------stm32f10x_sdio.h(21KB)
--------stm32f10x_wwdg.h(3KB)
--------stm32f10x_rtc.h(4KB)
--------stm32f10x_gpio.h(20KB)
--------stm32f10x_flash.h(25KB)
--------stm32f10x_dma.h(20KB)
--------stm32f10x_rcc.h(30KB)
--------stm32f10x_iwdg.h(4KB)
--------stm32f10x_fsmc.h(26KB)
--------stm32f10x_exti.h(7KB)
--------misc.h(9KB)
--------stm32f10x_spi.h(17KB)
--------stm32f10x_crc.h(2KB)
--------stm32f10x_i2c.h(29KB)
--------stm32f10x_can.h(27KB)
--------stm32f10x_cec.h(6KB)
----src()
--------stm32f10x_sdio.c(28KB)
--------stm32f10x_adc.c(46KB)
--------stm32f10x_bkp.c(8KB)
--------stm32f10x_cec.c(11KB)
--------stm32f10x_usart.c(37KB)
--------stm32f10x_pwr.c(9KB)
--------stm32f10x_flash.c(61KB)
--------stm32f10x_dbgmcu.c(5KB)
--------stm32f10x_wwdg.c(6KB)
--------stm32f10x_gpio.c(23KB)
--------stm32f10x_crc.c(3KB)
--------stm32f10x_rtc.c(8KB)
--------stm32f10x_dac.c(19KB)
--------stm32f10x_spi.c(30KB)
--------stm32f10x_can.c(44KB)
--------stm32f10x_iwdg.c(5KB)
--------stm32f10x_dma.c(29KB)
--------stm32f10x_tim.c(107KB)
--------stm32f10x_i2c.c(45KB)
--------stm32f10x_rcc.c(50KB)
--------misc.c(7KB)
--------stm32f10x_exti.c(7KB)
--------stm32f10x_fsmc.c(35KB)
List
----test.map(102KB)
----startup_stm32f10x_hd.lst(50KB)
USER
----test.uvproj(18KB)
----test_Target 1.dep(71B)
----stm32f10x_it.c(4KB)
----main.c(840B)
----test_uvproj.bak(17KB)
----test.plg(216KB)
----test_Mytest.dep(16KB)
----test.uvgui.myk(91KB)
----JLinkSettings.ini(573B)
----test.uvopt(13KB)
----JLinkLog.txt(51KB)
----test_uvopt.bak(79KB)
----stm32f10x_conf.h(3KB)
----test.uvgui_Administrator.bak(301KB)
----test.uvgui.Administrator(309KB)
----stm32f10x_it.h(2KB)

网友评论