Skip to content

Commit

Permalink
Add dummy byte for w25q80bv fast read command timing
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicgs committed Jan 18, 2016
1 parent 6522caa commit 0418d13
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion firmware/common/w25q80bv.c
Expand Up @@ -215,7 +215,8 @@ void w25q80bv_read(w25q80bv_driver_t* const drv, uint32_t addr, uint32_t len, ui
W25Q80BV_FAST_READ,
(addr & 0xFF0000) >> 16,
(addr & 0xFF00) >> 8,
addr & 0xFF
addr & 0xFF,
0x00
};

const spi_transfer_t transfers[] = {
Expand Down

0 comments on commit 0418d13

Please sign in to comment.