the led isn't lighting up :'(

This commit is contained in:
benstrb 2026-04-06 19:52:48 +02:00
parent 242f218a62
commit 2854adeb13
7 changed files with 74 additions and 65 deletions

10
ccmram.x Normal file
View file

@ -0,0 +1,10 @@
/* Extra linker script to place data into CCM SRAM */
SECTIONS
{
.ccmram (NOLOAD) :
{
. = ALIGN(4);
*(.ccmram .ccmram.*)
. = ALIGN(4);
} > CCMRAM
} INSERT AFTER .rodata;