Skip to content

Commit

Permalink
fixes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kdschlosser committed Jan 14, 2025
1 parent f51340b commit 9322506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion micropy_updates/esp32/machine_hw_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ static void machine_hw_spi_device_transfer(mp_obj_base_t *self_in, size_t len, c
} else if (self->quad) {
transaction.flags |= SPI_TRANS_MODE_QIO | SPI_TRANS_MULTILINE_ADDR;
} else if (self->octal) {
transaction.flags |= SPI_TRANS_MODE_OCT _ SPI_TRANS_MULTILINE_ADDR;
transaction.flags |= SPI_TRANS_MODE_OCT | SPI_TRANS_MULTILINE_ADDR;
}

spi_device_transmit(spi_device, &transaction);
Expand Down

0 comments on commit 9322506

Please sign in to comment.