Skip to content

Commit dc7de6e

Browse files
TakeoTakahashi2020dpgeorge
authored andcommitted
renesas-ra: Change MICROPY_HW_BOARD_NAME definition to product name.
Changes in this commit: - Change MICROPY_HW_BOARD_NAME definition to match the product name. - Rename board folder's name to match the product name style. - Change related files like Makefile, document descriptions, test cases, CI and tools. Signed-off-by: Takeo Takahashi <takeo.takahashi.xv@renesas.com>
1 parent 82a59a8 commit dc7de6e

148 files changed

Lines changed: 62 additions & 59 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/renesas-ra/general.rst

Lines changed: 1 addition & 1 deletion

docs/renesas-ra/tutorial/intro.rst

Lines changed: 1 addition & 1 deletion

ports/renesas-ra/Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ifdef BOARD_DIR
55
BOARD ?= $(notdir $(BOARD_DIR:/=))
66
else
77
# If not given on the command line, then default to RA6M2_EK.
8-
BOARD ?= RA6M2_EK
8+
BOARD ?= EK_RA6M2
99
BOARD_DIR ?= boards/$(BOARD)
1010
endif
1111

@@ -23,28 +23,28 @@ CMSIS_MCU_CAP = RA4M1
2323
USE_FSP_LPM = 0
2424
endif
2525

26-
ifeq ($(BOARD),RA4M1_EK)
26+
ifeq ($(BOARD),EK_RA4M1)
2727
BOARD_LOW = ra4m1_ek
2828
CMSIS_MCU_LOW = ra4m1
2929
CMSIS_MCU_CAP = RA4M1
3030
USE_FSP_LPM = 0
3131
endif
3232

33-
ifeq ($(BOARD),RA4W1_EK)
33+
ifeq ($(BOARD),EK_RA4W1)
3434
BOARD_LOW = ra4w1_ek
3535
CMSIS_MCU_LOW = ra4w1
3636
CMSIS_MCU_CAP = RA4W1
3737
USE_FSP_LPM = 1
3838
endif
3939

40-
ifeq ($(BOARD),RA6M1_EK)
40+
ifeq ($(BOARD),EK_RA6M1)
4141
BOARD_LOW = ra6m1_ek
4242
CMSIS_MCU_LOW = ra6m1
4343
CMSIS_MCU_CAP = RA6M1
4444
USE_FSP_LPM = 1
4545
endif
4646

47-
ifeq ($(BOARD),RA6M2_EK)
47+
ifeq ($(BOARD),EK_RA6M2)
4848
BOARD_LOW = ra6m2_ek
4949
CMSIS_MCU_LOW = ra6m2
5050
CMSIS_MCU_CAP = RA6M2

ports/renesas-ra/README.md

Lines changed: 6 additions & 6 deletions
File renamed without changes.
File renamed without changes.

ports/renesas-ra/boards/RA4M1_EK/mpconfigboard.h renamed to ports/renesas-ra/boards/EK_RA4M1/mpconfigboard.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// MCU config
2-
#define MICROPY_HW_BOARD_NAME "RA4M1_EK"
2+
#define MICROPY_HW_BOARD_NAME "EK-RA4M1"
33
#define MICROPY_HW_MCU_NAME "RA4M1"
44
#define MICROPY_HW_MCU_SYSCLK 48000000
55
#define MICROPY_HW_MCU_PCLK 48000000
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
CMSIS_MCU = RA4M1
22
MCU_SERIES = m4
3-
LD_FILES = boards/RA4M1_EK/ra4m1_ek.ld
3+
LD_FILES = boards/EK_RA4M1/ra4m1_ek.ld
44

55
# MicroPython settings
66
MICROPY_VFS_FAT = 1
77

88
# Don't include default frozen modules because MCU is tight on flash space
9-
FROZEN_MANIFEST ?= boards/RA4M1_EK/manifest.py
9+
FROZEN_MANIFEST ?= boards/EK_RA4M1/manifest.py
File renamed without changes.

0 commit comments

Comments
 (0)