Add firmware_name to info response

This commit is contained in:
Ian Gulliver
2026-04-06 20:09:30 +09:00
parent 49bbe1b29c
commit f837937cb7
7 changed files with 16 additions and 5 deletions

View File

@@ -18,5 +18,6 @@ void handle_info(usb_cdc& usb, uint32_t message_id) {
auto ninfo = w6300::get_net_info();
resp.mac = ninfo.mac;
resp.link_local = ninfo.lla;
resp.firmware_name = firmware_name;
usb.send(encode_response(message_id, resp));
}