she blinks

This commit is contained in:
2026-07-18 10:29:56 +12:00
parent e883feb8d7
commit 17d21d86c7
56 changed files with 279 additions and 351 deletions

View File

@@ -2,7 +2,6 @@ FLASH_SIZE = 0x1b580; /* 112k flash */
SRAM_SIZE = 0x8000; /* 32k sram */
STACK_SIZE = 0x400; /* 1k stack */
ENTRY(resetHandler)
MEMORY
@@ -33,7 +32,6 @@ SECTIONS
__initial_stack_pointer = .;
} > sram
.data :
{
_sdata = .;
@@ -41,7 +39,7 @@ SECTIONS
*(.data*)
. = ALIGN(4);
_edata = .;
} > sram AT> flash
} > sram
_ldata = LOADADDR(.data);