spelling: firmware

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 11:55:44 -05:00
parent c4b4244b2d
commit 22e6f64653
6 changed files with 6 additions and 6 deletions

View file

@ -1129,7 +1129,7 @@ def _create_qemu_image_micro(ctx, path_to_firmware_hex):
img = IntelHex(ctx.env.BOOTLOADER_HEX)
img.merge(IntelHex(path_to_firmware_hex), overlap='replace')
# Write firwmare image and pad up to next 512 byte multiple. This is because QEMU
# Write firmware image and pad up to next 512 byte multiple. This is because QEMU
# assumes all block devices are multiples of 512 byte sectors
img.padding = 0xff
flash_end = ((img.maxaddr() + 511) // 512) * 512