Lesser known buffers/registers to act as RAM in STM32F769?
I've been assigned the task of reducing RAM usage on an STM32F769 microcontroller running FreeRTOS. I've done the usual stuff (packed structs and specified the number of bits each member needs, made all the XXXX_InitTypeDef and other de facto constant data const/constexpr, and placed things in ITCM and backup SRAM). Can anybody recommend some storage that is easily forgotten, e.g. some peripherals that have built-in buffers or large register ranges, e.g. the CAN-buses' filter registers (CAN_TypeDef->CAN_FilterRegister_TypeDef), etc?
