mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 11:10:14 +01:00
stm32/qspi: Fix typo in address comment.
This commit is contained in:
committed by
Damien George
parent
f9e5b0d93d
commit
1dc532019b
@@ -318,7 +318,7 @@ STATIC void qspi_read_cmd_qaddr_qdata(void *self_in, uint8_t cmd, uint32_t addr,
|
||||
;
|
||||
|
||||
QUADSPI->ABR = 0; // alternate byte: disable continuous read mode
|
||||
QUADSPI->AR = addr; // addres to read from
|
||||
QUADSPI->AR = addr; // address to read from
|
||||
|
||||
// Read in the data 4 bytes at a time if dest is aligned
|
||||
if (((uintptr_t)dest & 3) == 0) {
|
||||
|
||||
Reference in New Issue
Block a user