diff options
| author | Takeo Takahashi <takeo.takahashi.xv@renesas.com> | 2023-01-13 21:28:15 +0900 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2023-04-27 14:12:53 +1000 |
| commit | dc7de6ed839dfd9c0a538fd1375f2adb77a68205 (patch) | |
| tree | 0499167bd799c13ce64b8c701528a34c348ae76f /tests/renesas-ra/uart1.py | |
| parent | 82a59a824c77c933a622498b9005dc50a026904e (diff) | |
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>
Diffstat (limited to 'tests/renesas-ra/uart1.py')
| -rw-r--r-- | tests/renesas-ra/uart1.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/renesas-ra/uart1.py b/tests/renesas-ra/uart1.py index bf7b92760..ba329fb85 100644 --- a/tests/renesas-ra/uart1.py +++ b/tests/renesas-ra/uart1.py @@ -2,29 +2,29 @@ import os from machine import UART machine = os.uname().machine -if "RA6M2_EK" in machine: +if "EK-RA6M2" in machine: # 0, 7, 9 uart_ids = (0, 7, 9) try_id = 7 try_s = "UART(7, baudrate=115200, bits=8, parity=None, stop=1, tx=P401, rx=P402, flow=0, rxbuf=259, timeout=0, timeout_char=2)" -elif "RA4M1_CLICKER" in machine: +elif "RA4M1 CLICKER" in machine: # 0, 1 uart_ids = (0, 1) try_id = 0 try_s = "UART(0, baudrate=115200, bits=8, parity=None, stop=1, tx=P411, rx=P410, flow=0, rxbuf=259, timeout=0, timeout_char=2)" -elif "RA4M1_EK" in machine: +elif "EK-RA4M1" in machine: # 0, 1, 2, 9 # vector for 9 is not registered uart_ids = (0, 1, 2) try_id = 1 try_s = "UART(1, baudrate=115200, bits=8, parity=None, stop=1, tx=P401, rx=P402, flow=0, rxbuf=259, timeout=0, timeout_char=2)" -elif "RA4W1_EK" in machine: +elif "EK-RA4W1" in machine: # 0, 1, 4, 9 # 0 is disabled. uart_ids = (1, 4, 9) try_id = 9 try_s = "UART(9, baudrate=115200, bits=8, parity=None, stop=1, tx=P109, rx=P110, flow=0, rxbuf=259, timeout=0, timeout_char=2)" -elif "RA6M1_EK" in machine: +elif "EK-RA6M1" in machine: # 0, 1, 2, 3, 4, 8, 9 # 1/3/4/9 are disabled uart_ids = (0, 2, 8) |
