Clarification Needed on SYSCFG Register Map for STM32F411RE
Hello everyone,
I’m working on writing a driver for the STM32F411RE microcontroller and have a question regarding the SYSCFG register map. I’ve been referring to the STM32F411 Reference Manual (RM0383)
, specifically the SYSCFG section, and I’m a bit confused about the reserved spaces in the register map.
typedef struct { volatile uint32_t MEMRMP; // 0x00 - Memory remap register volatile uint32_t PMC; // 0x04 - Peripheral mode configuration register volatile uint32_t EXTICR[4]; // 0x08 to 0x14 - External interrupt configuration registers
// 8 bytes reserved? please reassure me stating a reason volatile uint32_t CMPCR; // 0x20 - Compensation cell control register } SYSCFG_RegDef_t;
on Table 22. SYSCFG register map and reset values, it does not explicitly state that there are 8 bytes reserved? I’ve carefully reviewed the manual, but I’m still unsure about the reserved space. unlike other maps which it clearly states the reserved spaces.

