Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions embassy-nrf/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- bugfix: Do not write to UICR from non-secure code on nrf53
- bugfix: Add delay to uart init anomaly fix
- changed: `BufferedUarte::read_ready` now uses the same definition for 'empty' so following read calls will not block when true is returned
- changed: allow configuring I2S in master mode without master clock output pin

## 0.8.0 - 2025-09-30

Expand Down
4 changes: 2 additions & 2 deletions embassy-nrf/src/i2s.rs
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ impl<'d> I2S<'d> {
pub fn new_master<T: Instance>(
_i2s: Peri<'d, T>,
_irq: impl interrupt::typelevel::Binding<T::Interrupt, InterruptHandler<T>> + 'd,
mck: Peri<'d, impl GpioPin>,
mck: Option<Peri<'d, impl GpioPin>>,
sck: Peri<'d, impl GpioPin>,
lrck: Peri<'d, impl GpioPin>,
master_clock: MasterClock,
Expand All @@ -434,7 +434,7 @@ impl<'d> I2S<'d> {
Self {
r: T::regs(),
state: T::state(),
mck: Some(mck.into()),
mck: mck.map(|mck| mck.into()),
sck: sck.into(),
lrck: lrck.into(),
sdin: None,
Expand Down