Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ports/raspberrypi/common-hal/audioi2sin/I2SIn.c
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ static size_t build_i2sin_ext_clock_program(uint16_t *prog, uint8_t bclk, uint8_
size_t len = 0;
prog[len++] = 0x2000 | ws; // wait 0 gpio W
prog[len++] = 0x2080 | ws; // wait 1 gpio W
if (left_justified) {
if (!left_justified) {
prog[len++] = wait_1_bclk; // one more BCLK of skew
}
const size_t bitloop = len + 1;
Expand Down
Loading