文件名称:example2_ADC
- 所属分类:
- 单片机(51,AVR,MSP430等)
- 资源属性:
- [C/C++] [源码]
- 上传时间:
- 2012-11-26
- 文件大小:
- 296kb
- 下载次数:
- 0次
- 提 供 者:
- 彭**
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
本例展示了如何利用高级控制定时器(TIM1)来触发模数转换器(ADC)和利用自动注入转换功能来触发注入转换。
在每一个TIM1的上升沿,ADC对通道14(ADC Channel14)上的输入做一次规则转换,然后,DMA会将寄存器ADC_DR1中数据传送到内存中相应的表格。
使能自动注入转换功能,ADC能够在通道14的规则转换之后自动对通道11(ADC Channel11)上的输入做一次注入转换。随后产生一个ADC中断,并置标志位JEOC。在中断中将注入转换结果存入ADC_InjectedConvertedValueTab。
整个过程将重复32次,之后失能TIM1,ADC的转换也随之停止。
和示例1一样,为了使本示例能在STM3210B-LK1上运行,将通道14改为通道10,通道11则保持不变。并且选择结果列表(ADC_RegularConvertedValueTab和ADC_InjectedConvertedValueTab)中的2个数值把它们交替显示在LCD屏幕上。-This example shows how to use advanced control timer (TIM1) to trigger analog-to-digital converter (ADC) and the use of automatic injected conversion function to trigger the injected conversion. The rising edge of a TIM1, the ADC input on channel 14 (ADCs Channel14) do a rules conversion, then the DMA will register ADC_DR1 data to the corresponding table in the memory. Enable automatic injected conversion, the ADC can automatically input on channel 11 (ADCs Channel11) after conversion of the channel 14 of the rules once injected into the conversion. Subsequently generate an ADC interrupt, and set the flag JEOC. Interrupt will be injected into the conversion results deposited ADC_InjectedConvertedValueTab. The whole process will be repeated 32 times, followed by disability TIM1, the ADC conversion will stop. Example 1, this example can be run on the in the STM3210B-the LK1, channel 14 to channel 10, channel 11 will remain unchanged. And two values in the results list (ADC_
在每一个TIM1的上升沿,ADC对通道14(ADC Channel14)上的输入做一次规则转换,然后,DMA会将寄存器ADC_DR1中数据传送到内存中相应的表格。
使能自动注入转换功能,ADC能够在通道14的规则转换之后自动对通道11(ADC Channel11)上的输入做一次注入转换。随后产生一个ADC中断,并置标志位JEOC。在中断中将注入转换结果存入ADC_InjectedConvertedValueTab。
整个过程将重复32次,之后失能TIM1,ADC的转换也随之停止。
和示例1一样,为了使本示例能在STM3210B-LK1上运行,将通道14改为通道10,通道11则保持不变。并且选择结果列表(ADC_RegularConvertedValueTab和ADC_InjectedConvertedValueTab)中的2个数值把它们交替显示在LCD屏幕上。-This example shows how to use advanced control timer (TIM1) to trigger analog-to-digital converter (ADC) and the use of automatic injected conversion function to trigger the injected conversion. The rising edge of a TIM1, the ADC input on channel 14 (ADCs Channel14) do a rules conversion, then the DMA will register ADC_DR1 data to the corresponding table in the memory. Enable automatic injected conversion, the ADC can automatically input on channel 11 (ADCs Channel11) after conversion of the channel 14 of the rules once injected into the conversion. Subsequently generate an ADC interrupt, and set the flag JEOC. Interrupt will be injected into the conversion results deposited ADC_InjectedConvertedValueTab. The whole process will be repeated 32 times, followed by disability TIM1, the ADC conversion will stop. Example 1, this example can be run on the in the STM3210B-the LK1, channel 14 to channel 10, channel 11 will remain unchanged. And two values in the results list (ADC_
(系统自动生成,下载前可以参看下载内容)
下载文件列表
example2_ADC\App\bsp.c
............\...\bsp.h
............\...\lcd.c
............\...\lcd.h
............\...\main.c
............\...\stm32f10x_conf.h
............\...\stm32f10x_it.c
............\...\stm32f10x_it.h
............\FWLib\inc\cortexm3_macro.h
............\.....\...\stm32f10x_adc.h
............\.....\...\stm32f10x_bkp.h
............\.....\...\stm32f10x_can.h
............\.....\...\stm32f10x_dma.h
............\.....\...\stm32f10x_exti.h
............\.....\...\stm32f10x_flash.h
............\.....\...\stm32f10x_gpio.h
............\.....\...\stm32f10x_i2c.h
............\.....\...\stm32f10x_iwdg.h
............\.....\...\stm32f10x_lib.h
............\.....\...\stm32f10x_map.h
............\.....\...\stm32f10x_nvic.h
............\.....\...\stm32f10x_pwr.h
............\.....\...\stm32f10x_rcc.h
............\.....\...\stm32f10x_rtc.h
............\.....\...\stm32f10x_spi.h
............\.....\...\stm32f10x_systick.h
............\.....\...\stm32f10x_tim.h
............\.....\...\stm32f10x_tim1.h
............\.....\...\stm32f10x_type.h
............\.....\...\stm32f10x_usart.h
............\.....\...\stm32f10x_wwdg.h
............\.....\src\stm32f10x_adc.c
............\.....\...\stm32f10x_bkp.c
............\.....\...\stm32f10x_can.c
............\.....\...\stm32f10x_dma.c
............\.....\...\stm32f10x_exti.c
............\.....\...\stm32f10x_flash.c
............\.....\...\stm32f10x_gpio.c
............\.....\...\stm32f10x_i2c.c
............\.....\...\stm32f10x_iwdg.c
............\.....\...\stm32f10x_lib.c
............\.....\...\stm32f10x_nvic.c
............\.....\...\stm32f10x_pwr.c
............\.....\...\stm32f10x_rcc.c
............\.....\...\stm32f10x_rtc.c
............\.....\...\stm32f10x_spi.c
............\.....\...\stm32f10x_systick.c
............\.....\...\stm32f10x_tim.c
............\.....\...\stm32f10x_tim1.c
............\.....\...\stm32f10x_usart.c
............\.....\...\stm32f10x_wwdg.c
............\Project\cortexm3_macro.s
............\.......\Debug\Exe\example2_ADC.out
............\.......\.....\Obj\bsp.o
............\.......\.....\...\cortexm3_macro.o
............\.......\.....\...\example2_ADC.pbd
............\.......\.....\...\lcd.o
............\.......\.....\...\main.o
............\.......\.....\...\stm32f10x_adc.o
............\.......\.....\...\stm32f10x_dma.o
............\.......\.....\...\stm32f10x_flash.o
............\.......\.....\...\stm32f10x_gpio.o
............\.......\.....\...\stm32f10x_it.o
............\.......\.....\...\stm32f10x_lib.o
............\.......\.....\...\stm32f10x_nvic.o
............\.......\.....\...\stm32f10x_rcc.o
............\.......\.....\...\stm32f10x_tim.o
............\.......\.....\...\stm32f10x_tim1.o
............\.......\.....\...\stm32f10x_vector.o
............\.......\example2_ADC.dep
............\.......\example2_ADC.ewd
............\.......\example2_ADC.ewp
............\.......\example2_ADC.eww
............\.......\lnkarm_flash.xcl
............\.......\lnkarm_ram.xcl
............\.......\settings\example2_ADC.cspy.bat
............\.......\........\example2_ADC.dbgdt
............\.......\........\example2_ADC.dni
............\.......\........\example2_ADC.wsdt
............\.......\........\example2_ADC_Debug.jlink
............\.......\stm32f10x_flash.icf
............\.......\stm32f10x_ram.icf
............\.......\stm32f10x_vector.c
............\.......\Debug\Exe
............\.......\.....\List
............\.......\.....\Obj
............\FWLib\inc
............\.....\src
............\Project\Debug
............\.......\settings
............\App
............\FWLib
............\Project
example2_ADC
............\...\bsp.h
............\...\lcd.c
............\...\lcd.h
............\...\main.c
............\...\stm32f10x_conf.h
............\...\stm32f10x_it.c
............\...\stm32f10x_it.h
............\FWLib\inc\cortexm3_macro.h
............\.....\...\stm32f10x_adc.h
............\.....\...\stm32f10x_bkp.h
............\.....\...\stm32f10x_can.h
............\.....\...\stm32f10x_dma.h
............\.....\...\stm32f10x_exti.h
............\.....\...\stm32f10x_flash.h
............\.....\...\stm32f10x_gpio.h
............\.....\...\stm32f10x_i2c.h
............\.....\...\stm32f10x_iwdg.h
............\.....\...\stm32f10x_lib.h
............\.....\...\stm32f10x_map.h
............\.....\...\stm32f10x_nvic.h
............\.....\...\stm32f10x_pwr.h
............\.....\...\stm32f10x_rcc.h
............\.....\...\stm32f10x_rtc.h
............\.....\...\stm32f10x_spi.h
............\.....\...\stm32f10x_systick.h
............\.....\...\stm32f10x_tim.h
............\.....\...\stm32f10x_tim1.h
............\.....\...\stm32f10x_type.h
............\.....\...\stm32f10x_usart.h
............\.....\...\stm32f10x_wwdg.h
............\.....\src\stm32f10x_adc.c
............\.....\...\stm32f10x_bkp.c
............\.....\...\stm32f10x_can.c
............\.....\...\stm32f10x_dma.c
............\.....\...\stm32f10x_exti.c
............\.....\...\stm32f10x_flash.c
............\.....\...\stm32f10x_gpio.c
............\.....\...\stm32f10x_i2c.c
............\.....\...\stm32f10x_iwdg.c
............\.....\...\stm32f10x_lib.c
............\.....\...\stm32f10x_nvic.c
............\.....\...\stm32f10x_pwr.c
............\.....\...\stm32f10x_rcc.c
............\.....\...\stm32f10x_rtc.c
............\.....\...\stm32f10x_spi.c
............\.....\...\stm32f10x_systick.c
............\.....\...\stm32f10x_tim.c
............\.....\...\stm32f10x_tim1.c
............\.....\...\stm32f10x_usart.c
............\.....\...\stm32f10x_wwdg.c
............\Project\cortexm3_macro.s
............\.......\Debug\Exe\example2_ADC.out
............\.......\.....\Obj\bsp.o
............\.......\.....\...\cortexm3_macro.o
............\.......\.....\...\example2_ADC.pbd
............\.......\.....\...\lcd.o
............\.......\.....\...\main.o
............\.......\.....\...\stm32f10x_adc.o
............\.......\.....\...\stm32f10x_dma.o
............\.......\.....\...\stm32f10x_flash.o
............\.......\.....\...\stm32f10x_gpio.o
............\.......\.....\...\stm32f10x_it.o
............\.......\.....\...\stm32f10x_lib.o
............\.......\.....\...\stm32f10x_nvic.o
............\.......\.....\...\stm32f10x_rcc.o
............\.......\.....\...\stm32f10x_tim.o
............\.......\.....\...\stm32f10x_tim1.o
............\.......\.....\...\stm32f10x_vector.o
............\.......\example2_ADC.dep
............\.......\example2_ADC.ewd
............\.......\example2_ADC.ewp
............\.......\example2_ADC.eww
............\.......\lnkarm_flash.xcl
............\.......\lnkarm_ram.xcl
............\.......\settings\example2_ADC.cspy.bat
............\.......\........\example2_ADC.dbgdt
............\.......\........\example2_ADC.dni
............\.......\........\example2_ADC.wsdt
............\.......\........\example2_ADC_Debug.jlink
............\.......\stm32f10x_flash.icf
............\.......\stm32f10x_ram.icf
............\.......\stm32f10x_vector.c
............\.......\Debug\Exe
............\.......\.....\List
............\.......\.....\Obj
............\FWLib\inc
............\.....\src
............\Project\Debug
............\.......\settings
............\App
............\FWLib
............\Project
example2_ADC