From 3afd7c3346e40080490f8805dab1751e7c3ccc87 Mon Sep 17 00:00:00 2001 From: adcondev <38170282+adcondev@users.noreply.github.com> Date: Thu, 12 Feb 2026 21:51:15 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Standardize=20little-endian=20co?= =?UTF-8?q?nversion=20using=20shared.ToLittleEndian?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit replaces manual bitwise operations for little-endian byte conversion with the `shared.ToLittleEndian` utility function across multiple packages in `pkg/commands`. Changes: - Refactored `pkg/commands/printposition/print_position_commands.go` - Refactored `pkg/commands/qrcode/qr_code_commands.go` - Refactored `pkg/commands/bitimage/graphics_commands.go` - Refactored `pkg/commands/bitimage/nv_graphics_commands.go` - Refactored `pkg/commands/bitimage/download_graphics_commands.go` These changes improve maintainability and readability by using a centralized conversion utility and standardizing the implementation pattern. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>