init basic examples and setup

This commit is contained in:
2026-05-25 18:16:02 +02:00
commit 8028dfd5fc
28 changed files with 2150 additions and 0 deletions

7
memory.x Normal file
View File

@@ -0,0 +1,7 @@
/* Conservative Blue Pill memory map.
Some boards expose 128K flash, but this repo stays within 64K. */
MEMORY
{
FLASH : ORIGIN = 0x08000000, LENGTH = 64K
RAM : ORIGIN = 0x20000000, LENGTH = 20K
}