summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeo Takahashi <takeo.takahashi.xv@renesas.com>2022-11-14 11:16:49 +0900
committerDamien George <damien@micropython.org>2022-11-15 10:01:36 +1100
commit5228f4067da028f0663e1ec2ceda139e07865b9d (patch)
tree3a190499a4883c4868761d20fc657fa9290b042e
parent75012cfd6ec68d229523620f827a658ca3c6afd3 (diff)
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 <takeo.takahashi.xv@renesas.com>
-rw-r--r--docs/renesas-ra/tutorial/program_in_flash.rst2
-rw-r--r--ports/renesas-ra/boards/RA6M1_EK/ra6m1_ek.ld4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/renesas-ra/tutorial/program_in_flash.rst b/docs/renesas-ra/tutorial/program_in_flash.rst
index 4abb95222..99a7a3839 100644
--- a/docs/renesas-ra/tutorial/program_in_flash.rst
+++ b/docs/renesas-ra/tutorial/program_in_flash.rst
@@ -18,7 +18,7 @@ As the factory setting, following size is allocated for the file system:
--------------- -------------------
EK-RA4M1 36KB ( 36864B)
EK-RA4W1 64KB ( 65536B)
- EK-RA6M1 128KB (131072B)
+ EK-RA6M1 64KB ( 65536B)
EK-RA6M2 128KB (131072B)
RA4M1 CLICKER 36KB ( 36864B)
=============== ===================
diff --git a/ports/renesas-ra/boards/RA6M1_EK/ra6m1_ek.ld b/ports/renesas-ra/boards/RA6M1_EK/ra6m1_ek.ld
index 90a425bde..c7d85ed3d 100644
--- a/ports/renesas-ra/boards/RA6M1_EK/ra6m1_ek.ld
+++ b/ports/renesas-ra/boards/RA6M1_EK/ra6m1_ek.ld
@@ -5,8 +5,8 @@
/* Linker script to configure memory regions. */
MEMORY
{
- FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x00060000 /* 384KB/512KB */
- FLASH_FS (r) : ORIGIN = 0x00060000, LENGTH = 0x00020000 /* 128KB/512KB */
+ FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x00070000 /* 448KB/512KB */
+ FLASH_FS (r) : ORIGIN = 0x00070000, LENGTH = 0x00010000 /* 64KB/512KB */
RAM (rwx) : ORIGIN = 0x1FFE0000, LENGTH = 0x00040000 /* 256KB */
DATA_FLASH (rx) : ORIGIN = 0x40100000, LENGTH = 0x00002000 /* 8KB */
ID_CODE (rx) : ORIGIN = 0x0100A150, LENGTH = 0x00000010 /* 32bytes */