We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65fc79e commit 79edcbeCopy full SHA for 79edcbe
ports/raspberrypi/common-hal/memorymap/AddressRange.c
@@ -122,7 +122,7 @@ void common_hal_memorymap_addressrange_get_bytes(const memorymap_addressrange_ob
122
case IO:
123
if ((size_t)src_addr & 0x03 || len & 0x03) {
124
// Unaligned access or unaligned length not supported by RP2 for IO registers
125
- mp_raise_RuntimeError(translate("Unable to access unaliged IO register"));
+ mp_raise_RuntimeError(translate("Unable to access unaligned IO register"));
126
} else {
127
// Aligned access and length, use 32-bit reads
128
uint32_t *src_addr32 = (uint32_t *)src_addr;
0 commit comments