Skip to content

Commit

Permalink
fix rendering issues with I2S for some displays
Browse files Browse the repository at this point in the history
Fixes a timing issue with the RMT signal, see
#253.

see #253.
  • Loading branch information
vroland committed Oct 9, 2023
1 parent 8feab16 commit d0f3754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/output_i2s/i2s_data_bus.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ void i2s_bus_init(i2s_bus_config *cfg, uint32_t epd_row_width) {

// Stop after transmission complete
dev->conf1.val = 0;
dev->conf1.tx_stop_en = 1;
dev->conf1.tx_stop_en = 0;
dev->conf1.tx_pcm_bypass = 1;

// Configure TX channel
Expand Down

0 comments on commit d0f3754

Please sign in to comment.