aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/twis.rs
Commit message (Collapse)AuthorAgeFilesLines
* feat: improve nrf54 support using new nrf-pacUlf Lilleengen2025-10-281-13/+31
| | | | | | | | | | | | | * Update nrf-pac to version that modifies nrf52 register layout to match nrf54 to reduce the amount of cfg needed for nrf54 support. * Make the following peripherals available on nrf54: twim, twis, spim, spis, uart, buffered uarte, dppi, gpiote, pwm, saadc * Add examples tested on the nrf54 dk Some code is based on or copied from other pull requests, modified to match the new nrf-pac layout. Co-authored-by: Dmitry Tarnyagin <[email protected]>
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-2/+2
|
* nrf/twis: erase instance genericsDario Nieuwenhuis2025-09-281-31/+34
|
* doc fixesRobin Mueller2025-09-231-1/+1
|
* Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-271-9/+7
|
* nrf: port to chiptool-based `nrf-pac`.Dario Nieuwenhuis2024-11-041-172/+190
|
* nrf: remove mod sealed.Dario Nieuwenhuis2024-04-051-19/+16
|
* nrf: Remove useless borrowsPriit Laes2024-02-171-1/+1
|
* Rename embassy-hal-common to embassy-hal-internal, document it's for ↵Dario Nieuwenhuis2023-07-281-1/+1
| | | | internal use only. (#1700)
* Make interrupt module more standard.Dario Nieuwenhuis2023-06-081-6/+6
| | | | | | | | | | | | - 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/+3
|
* Fix some typosDirk Stolle2023-05-081-7/+7
|
* nrf/twis: switch to new interrupt binding.Dario Nieuwenhuis2023-03-061-24/+31
|
* nrf/twis: FIx doc typoDario Nieuwenhuis2023-02-011-1/+1
|
* nrf: docs.Dario Nieuwenhuis2023-02-011-12/+45
|
* Rename write to respond_to_readHenrik Alsér2022-11-221-23/+29
|
* config write, docs, add address_match_indexHenrik Alsér2022-11-221-7/+15
|
* Return number of bytes written, add address match getterkalkyl2022-11-141-65/+76
|
* embassy-nrf: Add TWIS modulekalkyl2022-11-131-0/+734