diff options
author | Damien George <damien@micropython.org> | 2023-10-04 15:44:25 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-10-04 15:44:25 +1100 |
commit | 92717a95c048932e1085ff34ca799835515e442b (patch) | |
tree | 9deaf68f6865045159793dab6c7b24c065feccfe /tools/metrics.py | |
parent | 1cd61149e4328154110d4b1e38bcbecdcc0ec386 (diff) | |
download | micropython-92717a95c048932e1085ff34ca799835515e442b.tar.gz micropython-92717a95c048932e1085ff34ca799835515e442b.zip |
tools/metrics.py: Fix esp32 and esp8266 board names after renaming.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tools/metrics.py')
-rwxr-xr-x | tools/metrics.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/metrics.py b/tools/metrics.py index 95156e3012..9c5ed1d7d5 100755 --- a/tools/metrics.py +++ b/tools/metrics.py @@ -64,8 +64,8 @@ port_data = { "n": PortData("unix nanbox", "unix", "build-nanbox/micropython", "VARIANT=nanbox"), "s": PortData("stm32", "stm32", "build-PYBV10/firmware.elf", "BOARD=PYBV10"), "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"), + "8": PortData("esp8266", "esp8266", "build-ESP8266_GENERIC/firmware.elf"), + "3": PortData("esp32", "esp32", "build-ESP32_GENERIC/micropython.elf"), "x": PortData("mimxrt", "mimxrt", "build-TEENSY40/firmware.elf"), "e": PortData("renesas-ra", "renesas-ra", "build-EK_RA6M2/firmware.elf"), "r": PortData("nrf", "nrf", "build-PCA10040/firmware.elf"), |