Initial commit

This commit is contained in:
2019-08-17 21:31:59 +02:00
commit 91ef67ef37
10 changed files with 774 additions and 0 deletions

8
memory.x Normal file
View File

@ -0,0 +1,8 @@
MEMORY
{
/* Leave 8k for the default bootloader on the ItsyBitsy M0 */
FLASH (rx) : ORIGIN = 0x00000000 + 8K, LENGTH = 256K - 8K
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 32K
}
_stack_start = ORIGIN(RAM) + LENGTH(RAM);