Attention is currently required from: Xiang W, Edward O'Callaghan, Angel Pons.
1 comment:
File bitbang_spi.c:
programmer_delay(master->half_period);
bitbang_spi_set_sck_set_mosi(master, !cpol, (val >> i) & 1);
programmer_delay(master->half_period);
bitbang_spi_set_sck(master, cpol);
This does not look right and is probably what led to the follow up commit.
With cpha=0, the receiver is supposed to sample the data at the first edge.
So the sequence should be:
To view, visit change 49255. To unsubscribe, or for help writing mail filters, visit settings.