File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
boards/wm1110_dev-bootloader Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ fn main() {
11
11
} else {
12
12
String :: from ( "1.1.3" )
13
13
} ;
14
- bootloader_attributes:: write_flags ( & mut f, & version, 0x8000 ) ;
14
+ bootloader_attributes:: write_flags ( & mut f, & version, 0x10000 ) ;
15
15
bootloader_attributes:: write_attribute ( & mut f, "board" , "wm1110_dev" ) ;
16
16
bootloader_attributes:: write_attribute ( & mut f, "arch" , "cortex-m4" ) ;
17
- bootloader_attributes:: write_attribute ( & mut f, "appaddr" , "0x40000 " ) ;
17
+ bootloader_attributes:: write_attribute ( & mut f, "appaddr" , "0x50000 " ) ;
18
18
if let Ok ( bootloader) = env:: var ( "BOOTLOADER_HASH" ) {
19
19
bootloader_attributes:: write_attribute ( & mut f, "boothash" , & bootloader) ;
20
20
}
Original file line number Diff line number Diff line change 1
1
MEMORY
2
2
{
3
- rom (rx) : ORIGIN = 0x00000000 , LENGTH = 32K
4
- prog (rx) : ORIGIN = 0x00008000 , LENGTH = 480K
3
+ rom (rx) : ORIGIN = 0x00000000 , LENGTH = 64K
4
+ prog (rx) : ORIGIN = 0x00010000 , LENGTH = 480K
5
5
ram (rwx) : ORIGIN = 0x20000000 , LENGTH = 128K
6
6
}
7
7
You can’t perform that action at this time.
0 commit comments