Make Clock Persistant.

This commit is contained in:
Tim Keller
2021-08-17 23:53:57 +00:00
parent ee44b6ff49
commit 55f8908769
4 changed files with 28 additions and 3 deletions

View File

@@ -3,14 +3,23 @@
SEARCH_DIR(.)
GROUP(-lgcc -lc -lnosys)
NO_INIT_SIZE = 0x100;
RAM_MAX = 64K;
MEMORY
{
FLASH (rx) : ORIGIN = 0x00000, LENGTH = 0x78000
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 0x10000
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = RAM_MAX - NO_INIT_SIZE
NOINIT (rwx): ORIGIN = ORIGIN(RAM) + LENGTH(RAM), LENGTH = NO_INIT_SIZE
}
SECTIONS
{
noinit (NOLOAD):
{
PROVIDE(__start_noinit_data = .);
KEEP(*(.noinit))
PROVIDE(__stop_noinit_data = .);
} >NOINIT
}
SECTIONS