2017-01-17 05:59 AM
Hi,
I want to use the STM32F413 SRAM2 to run interrupt control loop routines, as I do for CCM-SRAM of the STM32F303.
So I need to configure the SRAM2 to be acessed through the I-Code/D-Code bus (address 0x10000000) to burst the performance.
I didn't figure out how to do it reading the reference manual.
SRAM2 can be acessed at the address 0x20040000 or at the address 0x10000000, or I need to to some register configuration to change de SRAM2 address from 0x20040000 to 0x10000000?
Can I use the procedure to run an Interrupt routine at STM32F303 CCM-RAM for the F413 SRAM2?
Ari.
Solved! Go to Solution.
2017-01-17 06:12 AM
You don't need to do anything, SRAM2 is from the programmer's point of view simply aliased at both addresses - at the 0x10000000 it's accessed through I and D; and at 0x2000xxxx through S port of processor.
JW
2017-01-17 06:12 AM
You don't need to do anything, SRAM2 is from the programmer's point of view simply aliased at both addresses - at the 0x10000000 it's accessed through I and D; and at 0x2000xxxx through S port of processor.
JW
2017-01-17 11:15 AM
JW,
Thanks for the clarification.
Ari.