stm32103 ADC转换使用DMA通道 ADC1源地址获取

#define ADC1_BASE             (APB2PERIPH_BASE + 0x2400)

#define ADC2_BASE             (APB2PERIPH_BASE + 0x2800)

#define ADC3_BASE             (APB2PERIPH_BASE + 0x3C00)

其余的自己查,在stm32f10x.h中

 ADC1_DR_Address =  APB2PERIPH_BASE + 0x24

ADC1_DR_Address =  PERIPH_BASE + 0x10000 + 0x24

ADC1_DR_Address = 0x40000000 + 0x10000 + 0x24

#define ADC1_DR_Address     0x4001244C(自己算的)

猜你喜欢

转载自blog.csdn.net/qq_36787524/article/details/85245414