Skip to content

Commit 9322506

Browse files
committed
fixes typo
1 parent f51340b commit 9322506

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

micropy_updates/esp32/machine_hw_spi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ static void machine_hw_spi_device_transfer(mp_obj_base_t *self_in, size_t len, c
324324
} else if (self->quad) {
325325
transaction.flags |= SPI_TRANS_MODE_QIO | SPI_TRANS_MULTILINE_ADDR;
326326
} else if (self->octal) {
327-
transaction.flags |= SPI_TRANS_MODE_OCT _ SPI_TRANS_MULTILINE_ADDR;
327+
transaction.flags |= SPI_TRANS_MODE_OCT | SPI_TRANS_MULTILINE_ADDR;
328328
}
329329

330330
spi_device_transmit(spi_device, &transaction);

0 commit comments

Comments
 (0)