From dea1ba33090589a195d9a6e83ff40bb7ec70d752 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 17 Jun 2022 14:57:58 +1000 Subject: [PATCH] tools/metrics.py: Add mimxrt and renesas-ra to list of available ports. Signed-off-by: Damien George --- tools/metrics.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/metrics.py b/tools/metrics.py index c857d0733e..c79b998e18 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"),