summaryrefslogtreecommitdiff
path: root/tools/metrics.py
diff options
context:
space:
mode:
authorAlessandro Gatti <a.gatti@frob.it>2024-09-12 23:26:40 +0200
committerDamien George <damien@micropython.org>2024-09-23 13:03:26 +1000
commit58e768914266dbe07eb1a9a2894e92957e6322eb (patch)
tree8859190492fb8551792b606b70d8496f35f10e6c /tools/metrics.py
parent8a9042a72bbfed7dcea56026ae42ee12f716f708 (diff)
tools/metrics.py: Add VIRT_RV32 to the code size metrics.
This commit adds the Qemu-based RISC-V 32 bits `VIRT_RV32` board to the list of ports/boards to be built for measuring code size changes. Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
Diffstat (limited to 'tools/metrics.py')
-rwxr-xr-xtools/metrics.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/metrics.py b/tools/metrics.py
index 2064675be..f6189e65a 100755
--- a/tools/metrics.py
+++ b/tools/metrics.py
@@ -71,6 +71,7 @@ port_data = {
"r": PortData("nrf", "nrf", "build-PCA10040/firmware.elf"),
"p": PortData("rp2", "rp2", "build-RPI_PICO_W/firmware.elf", "BOARD=RPI_PICO_W"),
"d": PortData("samd", "samd", "build-ADAFRUIT_ITSYBITSY_M4_EXPRESS/firmware.elf"),
+ "v": PortData("qemu rv32", "qemu", "build-VIRT_RV32/firmware.elf", "BOARD=VIRT_RV32"),
}