adding blinker02 example, uses lower part of the freerunning system level timer

This commit is contained in:
David Welch
2012-05-26 02:12:00 -04:00
parent 0c59440d2d
commit d00dab24f8
5 changed files with 126 additions and 0 deletions

12
blinker02/memmap Normal file
View File

@@ -0,0 +1,12 @@
MEMORY
{
ram : ORIGIN = 0x00000000, LENGTH = 0x1000
}
SECTIONS
{
.text : { *(.text*) } > ram
.bss : { *(.bss*) } > ram
}