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/spi.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/spi.py')
| -rw-r--r-- | tests/renesas-ra/spi.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/renesas-ra/spi.py b/tests/renesas-ra/spi.py index eb24f3714..52b908efb 100644 --- a/tests/renesas-ra/spi.py +++ b/tests/renesas-ra/spi.py @@ -3,11 +3,11 @@ from machine import SPI machine = os.uname().machine if ( - "RA6M1_EK" in machine - or "RA4M1_CLICKER" in machine - or "RA4M1_EK" in machine - or "RA4W1_EK" in machine - or "RA6M1_EK" in machine + "EK-RA6M1" in machine + or "RA4M1 CLICKER" in machine + or "EK-RA4M1" in machine + or "EK-RA4W1" in machine + or "EK-RA6M1" in machine ): spis = (-1, 0) else: |
