stm32f3: fix ADC2/4 "slave" memory map.

Main memory map just lists the base address for the pairs, doesn't clarify the
offset for the slave devices.
This commit is contained in:
Hanspeter Portner 2015-08-23 12:36:44 +02:00 committed by Karl Palsson
parent 0d1f5fc036
commit be56146407

View File

@ -107,9 +107,9 @@
/* AHB3 */
#define ADC3_BASE (PERIPH_BASE_AHB3 + 0x0400)
#define ADC4_BASE (PERIPH_BASE_AHB3 + 0x0400)
#define ADC4_BASE (PERIPH_BASE_AHB3 + 0x0500)
#define ADC1_BASE (PERIPH_BASE_AHB3 + 0x0000)
#define ADC2_BASE (PERIPH_BASE_AHB3 + 0x0000)
#define ADC2_BASE (PERIPH_BASE_AHB3 + 0x0100)
/* PPIB */
#define DBGMCU_BASE (PPBI_BASE + 0x00042000)