Skip to content

Commit 5228f40

Browse files
TakeoTakahashi2020dpgeorge
authored andcommitted
renesas-ra: Change file system size to 64KB for RA6M1.
Changes in this commit: - Change file system size from 128KB to 64KB in ra6m1_ek.ld. - Change EK-RA6M1's file system size in renesas-ra port document. Signed-off-by: Takeo Takahashi <[email protected]>
1 parent 75012cf commit 5228f40

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/renesas-ra/tutorial/program_in_flash.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ As the factory setting, following size is allocated for the file system:
1818
--------------- -------------------
1919
EK-RA4M1 36KB ( 36864B)
2020
EK-RA4W1 64KB ( 65536B)
21-
EK-RA6M1 128KB (131072B)
21+
EK-RA6M1 64KB ( 65536B)
2222
EK-RA6M2 128KB (131072B)
2323
RA4M1 CLICKER 36KB ( 36864B)
2424
=============== ===================

ports/renesas-ra/boards/RA6M1_EK/ra6m1_ek.ld

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
/* Linker script to configure memory regions. */
66
MEMORY
77
{
8-
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x00060000 /* 384KB/512KB */
9-
FLASH_FS (r) : ORIGIN = 0x00060000, LENGTH = 0x00020000 /* 128KB/512KB */
8+
FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x00070000 /* 448KB/512KB */
9+
FLASH_FS (r) : ORIGIN = 0x00070000, LENGTH = 0x00010000 /* 64KB/512KB */
1010
RAM (rwx) : ORIGIN = 0x1FFE0000, LENGTH = 0x00040000 /* 256KB */
1111
DATA_FLASH (rx) : ORIGIN = 0x40100000, LENGTH = 0x00002000 /* 8KB */
1212
ID_CODE (rx) : ORIGIN = 0x0100A150, LENGTH = 0x00000010 /* 32bytes */

0 commit comments

Comments
 (0)