Now jiggles the cursor
Next steps: * allow the jiggler to be temporarily disabled * illuminate an LED to say in operation Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
parent
18b499cc30
commit
c09126ccd7
6 changed files with 658 additions and 2 deletions
15
memory.x
Normal file
15
memory.x
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
MEMORY {
|
||||
BOOT2 : ORIGIN = 0x10000000, LENGTH = 0x100
|
||||
FLASH : ORIGIN = 0x10000100, LENGTH = 2048K - 0x100
|
||||
RAM : ORIGIN = 0x20000000, LENGTH = 256K
|
||||
}
|
||||
|
||||
EXTERN(BOOT2_FIRMWARE)
|
||||
|
||||
SECTIONS {
|
||||
/* ### Boot loader */
|
||||
.boot2 ORIGIN(BOOT2) :
|
||||
{
|
||||
KEEP(*(.boot2));
|
||||
} > BOOT2
|
||||
} INSERT BEFORE .text;
|
||||
Loading…
Add table
Add a link
Reference in a new issue