Skip to content

Commit cb02a49

Browse files
committedApr 27, 2015
Update incorrect flash offset in linker script
1 parent 3128019 commit cb02a49

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
 

‎01-HelloWorld/hello.ld

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ENTRY(reset_handler)
22

33
MEMORY
44
{
5-
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 128K
5+
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 128K
66
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 40K
77
}
88

‎02-ContextSwitch-1/os.ld

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ENTRY(reset_handler)
22

33
MEMORY
44
{
5-
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 128K
5+
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 128K
66
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 40K
77
}
88

‎03-ContextSwitch-2/os.ld

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ENTRY(reset_handler)
22

33
MEMORY
44
{
5-
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 128K
5+
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 128K
66
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 40K
77
}
88

‎04-Multitasking/os.ld

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ENTRY(reset_handler)
22

33
MEMORY
44
{
5-
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 128K
5+
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 128K
66
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 40K
77
}
88

‎05-TimerInterrupt/hello.ld

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ENTRY(reset_handler)
22

33
MEMORY
44
{
5-
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 128K
5+
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 128K
66
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 40K
77
}
88

‎06-Preemptive/os.ld

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ENTRY(reset_handler)
22

33
MEMORY
44
{
5-
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 128K
5+
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 128K
66
RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 40K
77
}
88

0 commit comments

Comments
 (0)
Please sign in to comment.