Skip to content

Commit

Permalink
added a note re I2S0 not supporting true 8bit
Browse files Browse the repository at this point in the history
  • Loading branch information
liebman committed Oct 24, 2024
1 parent 0f3cb4f commit 8327b2e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions esp-hal/src/i2s_parallel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
//! - 16bit: [A, B, C, D] is output as [B, A, D, C] (i.e., 16bit words are
//! swapped)
//!
//! I2S0 does not support true 8bit parallel output, so if you want to do 8bit
//! you should use I2S1. If you have to use I2S0, it will only output the even
//! bytes! so [A, B, C, D] will be output as [A, C]!!!!
//!
//! ## Configuration
//!
//! The driver uses DMA (Direct Memory Access) for efficient data transfer and
Expand Down

0 comments on commit 8327b2e

Please sign in to comment.