Reorder ext IDs, add board ID to ResponseInfo, fix CRLF translation

This commit is contained in:
Ian Gulliver
2026-04-04 15:09:16 +09:00
parent d2b9a2e2aa
commit 0973f9c454
4 changed files with 36 additions and 26 deletions

View File

@@ -82,6 +82,9 @@ func run(buildDir string) error {
if err != nil {
fmt.Fprintf(os.Stderr, "warning: Info request failed: %v\n", err)
} else {
fmt.Printf("Board ID: %02X%02X%02X%02X%02X%02X%02X%02X\n",
info.BoardID[0], info.BoardID[1], info.BoardID[2], info.BoardID[3],
info.BoardID[4], info.BoardID[5], info.BoardID[6], info.BoardID[7])
fmt.Printf("MAC: %02X:%02X:%02X:%02X:%02X:%02X\n",
info.MAC[0], info.MAC[1], info.MAC[2],
info.MAC[3], info.MAC[4], info.MAC[5])