From e74c4f148ad59a45609379ffefa01f026d893c2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20van=20Dorst?= Date: Sat, 17 Jan 2026 21:01:34 +0100 Subject: [PATCH] version: Also show the hardware profile. --- cmd_parser.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd_parser.c b/cmd_parser.c index 4a531fc..a84ea55 100644 --- a/cmd_parser.c +++ b/cmd_parser.c @@ -688,6 +688,8 @@ void print_gpio_status(void) { void print_sw_version(void) __banked { print_string("Software version: "); print_string(VERSION_SW); + print_string("\nHardware: "); + print_string(machine.machine_name); write_char('\n'); }