aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/i2s.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-2/+2
|
* nrf/i2s: erase instance genericDario Nieuwenhuis2025-09-281-78/+98
|
* doc fixesRobin Mueller2025-09-231-1/+1
|
* Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-271-35/+33
|
* nrf: port to chiptool-based `nrf-pac`.Dario Nieuwenhuis2024-11-041-92/+74
|
* Use raw slices .len() method instead of unsafe hacks.Dario Nieuwenhuis2024-06-131-4/+3
| | | | Stabilized in 1.79.
* nrf: remove mod sealed.Dario Nieuwenhuis2024-04-051-29/+25
|
* Rename embassy-hal-common to embassy-hal-internal, document it's for ↵Dario Nieuwenhuis2023-07-281-2/+2
| | | | internal use only. (#1700)
* Make interrupt module more standard.Dario Nieuwenhuis2023-06-081-7/+7
| | | | | | | | | | | | - Move typelevel interrupts to a special-purpose mod: `embassy_xx::interrupt::typelevel`. - Reexport the PAC interrupt enum in `embassy_xx::interrupt`. This has a few advantages: - The `embassy_xx::interrupt` module is now more "standard". - It works with `cortex-m` functions for manipulating interrupts, for example. - It works with RTIC. - the interrupt enum allows holding value that can be "any interrupt at runtime", this can't be done with typelevel irqs. - When "const-generics on enums" is stable, we can remove the typelevel interrupts without disruptive changes to `embassy_xx::interrupt`.
* cortex-m: remove owned interrupts.Dario Nieuwenhuis2023-06-011-3/+2
|
* nrf/i2s: switch to new interrupt binding.Dario Nieuwenhuis2023-03-061-37/+40
|
* nrf: docs.Dario Nieuwenhuis2023-02-011-29/+80
|
* Move the responsibility to manage buffers to the I2S streamChristian Perez Llamas2022-12-081-45/+112
|
* Optimization to be able to work with only 2 buffersChristian Perez Llamas2022-11-291-14/+34
|
* Use &mut self for start methodsChristian Perez Llamas2022-11-261-3/+6
|
* Buffer management in line with other peripherals. Constructor and config ↵Christian Perez Llamas2022-11-191-384/+331
| | | | redesign
* Fix fmtChristian Perez Llamas2022-11-191-1/+1
|
* Fix buildChristian Perez Llamas2022-11-191-5/+2
|
* Add missing parts and CleanupChristian Perez Llamas2022-11-191-83/+466
|
* Fix buffer overrunsChristian Perez Llamas2022-11-171-182/+237
|
* Minor changesChristian Perez Llamas2022-11-131-4/+5
|
* Investigating discontinuities in the signalChristian Perez Llamas2022-11-131-20/+48
|
* Interrupts, async, sine oscillatorChristian Perez Llamas2022-11-121-79/+217
|
* Add input rxChristian Perez Llamas2022-11-101-8/+51
|
* Buffer trait. Simpler config.Christian Perez Llamas2022-11-101-58/+64
|
* Apply configChristian Perez Llamas2022-11-091-21/+64
|
* Make bors grin ;)Roman Valls Guimera2022-11-091-20/+27
|
* Draft: Initial support for I2S with a working example.Christian Perez Llamas2022-11-091-0/+403
Co-authored-by: @brainstorm <[email protected]>