Skip to content

Commit

Permalink
board/lm3s6965-ek: restore 128K kflash
Browse files Browse the repository at this point in the history
This reverts both 2afdcfb and 0a0af89 to restore the 128K kflash
design as the implementation depends on that to work, checked with:

```
$ qemu-system-arm -M lm3s6965evb -nographic -device \
    loader,file=nuttx.bin,addr=0x0 -device \
    loader,file=nuttx_user.bin,addr=0x2000
```

Signed-off-by: Yanfeng Liu <yfliu2008@qq.com>
  • Loading branch information
yf13 authored and xiaoxiang781216 committed Aug 11, 2024
1 parent af78534 commit 76b58e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boards/arm/tiva/lm3s6965-ek/scripts/memory.ld
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ MEMORY
{
/* 256Kb FLASH */

kflash (rx) : ORIGIN = 0x00000000, LENGTH = 124K
uflash (rx) : ORIGIN = 0x0001f000, LENGTH = 132K
kflash (rx) : ORIGIN = 0x00000000, LENGTH = 128K
uflash (rx) : ORIGIN = 0x00020000, LENGTH = 128K
xflash (rx) : ORIGIN = 0x00040000, LENGTH = 0K

/* 64Kb of contiguous SRAM */
Expand Down

0 comments on commit 76b58e4

Please sign in to comment.