How do I select a base address in Memory protection unit?
I am trying to configure MPU in STM32F103RB using ARM Information Center. It says there that '
The base address must be aligned to the size of the region. For example, a 64KB region must be aligned on a multiple of 64KB, for example, at
0x00010000
or
0x00020000
.' Here's a link to that page,
http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0552a/Cihjddef.html
.What does this mean?
I want to select a region of 64 bytes starting from 0x20000000. How can I do this?
#stm32-nucleo #memory-protection #stm32f103rb