mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
14 lines
433 B
Plaintext
14 lines
433 B
Plaintext
execUserReset()
|
|
{
|
|
__writeMemory32(0x00000000, 0xE000ED08, "Memory"); //Vector table remap at 0x00000000
|
|
}
|
|
|
|
execUserPreload()
|
|
{
|
|
// If the MAM values was wrong, a dummy read is necessary to get the flash memory in sync.
|
|
__writeMemory32(0x00000001, 0x400FC040, "Memory"); // MEMMAP = 1
|
|
__readMemory32(0x00000000, "Memory");
|
|
__writeMemory32(0x00000000, 0xE000ED08, "Memory"); //Vector table remap at 0x00000000
|
|
}
|
|
|