diff options
author | Damien George <damien@micropython.org> | 2022-06-17 14:57:58 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-06-17 14:57:58 +1000 |
commit | dea1ba33090589a195d9a6e83ff40bb7ec70d752 (patch) | |
tree | 9c97427a8172476e26bb6e853c32a4fd2db8acc0 /tools/metrics.py | |
parent | d8e7ecd23123247a6fc6f7d28833351e5b9d1fb6 (diff) |
tools/metrics.py: Add mimxrt and renesas-ra to list of available ports.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tools/metrics.py')
-rwxr-xr-x | tools/metrics.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/metrics.py b/tools/metrics.py index c857d0733..c79b998e1 100755 --- a/tools/metrics.py +++ b/tools/metrics.py @@ -66,6 +66,8 @@ port_data = { "c": PortData("cc3200", "cc3200", "build/WIPY/release/application.axf", "BTARGET=application"), "8": PortData("esp8266", "esp8266", "build-GENERIC/firmware.elf"), "3": PortData("esp32", "esp32", "build-GENERIC/micropython.elf"), + "x": PortData("mimxrt", "mimxrt", "build-TEENSY40/firmware.elf"), + "e": PortData("renesas-ra", "renesas-ra", "build-RA6M2_EK/firmware.elf"), "r": PortData("nrf", "nrf", "build-pca10040/firmware.elf"), "p": PortData("rp2", "rp2", "build-PICO/firmware.elf"), "d": PortData("samd", "samd", "build-ADAFRUIT_ITSYBITSY_M4_EXPRESS/firmware.elf"), |