Firmware: adjust to reduced bootloader size

This commit is contained in:
ikari 2011-12-16 19:08:38 +01:00
parent e880fac0ba
commit c97278c3d6
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
#flash info 0
reset init
flash write_image erase unlock obj/firmware.img 12288
flash write_image erase unlock obj/firmware.img 8192
reset run
shutdown

View File

@ -10,7 +10,7 @@ ENTRY(_start)
MEMORY
{
flash (rx) : ORIGIN = 0x00003100, LENGTH = 0x1cf00 /* leave room for bootldr + metadata */
flash (rx) : ORIGIN = 0x00002100, LENGTH = 0x1df00 /* leave room for bootldr + metadata */
ram (rwx) : ORIGIN = 0x10000000, LENGTH = 0x04000
ahbram (rwx) : ORIGIN = 0x2007C000, LENGTH = 0x04000
}