| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fix copy paste bug in i2c pullup ? | Kezi | 2025-12-12 | 1 | -1/+1 |
| | | |||||
| * | feat: improve nrf54 support using new nrf-pac | Ulf Lilleengen | 2025-10-28 | 1 | -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 Nieuwenhuis | 2025-10-06 | 1 | -1/+1 |
| | | |||||
| * | nrf/uart,timer: erase instance generics. | Dario Nieuwenhuis | 2025-09-28 | 1 | -2/+0 |
| | | |||||
| * | nrf/twim: erase instance generics | Dario Nieuwenhuis | 2025-09-27 | 1 | -34/+41 |
| | | |||||
| * | doc fixes | Robin Mueller | 2025-09-23 | 1 | -2/+2 |
| | | |||||
| * | Add docs | Alex Moon | 2025-04-29 | 1 | -0/+6 |
| | | |||||
| * | Make the nrf Twim RAM buffer a instance variable instead of stack allocated | Alex Moon | 2025-04-18 | 1 | -142/+23 |
| | | |||||
| * | Remove Peripheral trait, rename PeripheralRef->Peri. | Dario Nieuwenhuis | 2025-03-27 | 1 | -9/+7 |
| | | |||||
| * | panic when events_error is set in twim without errorsrc | dragonn | 2025-01-08 | 1 | -4/+1 |
| | | |||||
| * | remove self from check_errorsrc to make it work in async_wait | dragonn | 2025-01-08 | 1 | -3/+3 |
| | | |||||
| * | use check_errorsrc instead of matching again on errorsrc bits | dragonn | 2025-01-08 | 1 | -7/+2 |
| | | |||||
| * | nrf twim return errors in async_wait | dragonn | 2025-01-08 | 1 | -4/+17 |
| | | |||||
| * | nrf: port to chiptool-based `nrf-pac`. | Dario Nieuwenhuis | 2024-11-04 | 1 | -126/+112 |
| | | |||||
| * | Refactoring and cleanup | Alex Moon | 2024-10-23 | 1 | -86/+95 |
| | | |||||
| * | Remove support for consecutive Read operations | Alex Moon | 2024-10-23 | 1 | -132/+57 |
| | | | | | Due to Twim hardware limitations | ||||
| * | Add support for transactions to Twim in embassy-nrf | Alex Moon | 2024-10-23 | 1 | -244/+377 |
| | | |||||
| * | nrf: remove mod sealed. | Dario Nieuwenhuis | 2024-04-05 | 1 | -19/+16 |
| | | |||||
| * | nrf: Remove useless lifetimes | Priit Laes | 2024-02-17 | 1 | -4/+4 |
| | | |||||
| * | nrf: Remove useless borrows | Priit Laes | 2024-02-17 | 1 | -2/+2 |
| | | |||||
| * | nrf: Use .is_empty() instead of .len() == 0 | Priit Laes | 2024-02-17 | 1 | -3/+3 |
| | | |||||
| * | Remove nightly and unstable-traits features in preparation for 1.75. | Dario Nieuwenhuis | 2023-11-29 | 1 | -62/+53 |
| | | |||||
| * | nrf, rp: update set_config | xoviat | 2023-10-01 | 1 | -2/+5 |
| | | |||||
| * | nrf: twim: Use SetConfig trait to reduce code duplication | Priit Laes | 2023-09-10 | 1 | -4/+5 |
| | | |||||
| * | Rename embassy-hal-common to embassy-hal-internal, document it's for ↵ | Dario Nieuwenhuis | 2023-07-28 | 1 | -1/+1 |
| | | | | | internal use only. (#1700) | ||||
| * | Make interrupt module more standard. | Dario Nieuwenhuis | 2023-06-08 | 1 | -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 Nieuwenhuis | 2023-06-01 | 1 | -3/+3 |
| | | |||||
| * | Fix some typos | Dirk Stolle | 2023-05-08 | 1 | -1/+1 |
| | | |||||
| * | Update embedded-hal crates. | Dario Nieuwenhuis | 2023-04-06 | 1 | -37/+10 |
| | | |||||
| * | nrf/twim: switch to new interrupt binding. | Dario Nieuwenhuis | 2023-03-06 | 1 | -20/+27 |
| | | |||||
| * | nrf: docs. | Dario Nieuwenhuis | 2023-02-01 | 1 | -18/+55 |
| | | |||||
| * | Switch to async-fn-in-trait | Dario Nieuwenhuis | 2022-11-25 | 1 | -18/+10 |
| | | |||||
| * | Update embedded-hal versions and explicitly pin | Ulf Lilleengen | 2022-09-29 | 1 | -3/+3 |
| | | |||||
| * | Replace futures::future::poll_fn -> core::future::poll_fn. | Dario Nieuwenhuis | 2022-09-22 | 1 | -2/+1 |
| | | |||||
| * | Do not use cfg_if for embedded-hal-async feature gates. | Dario Nieuwenhuis | 2022-08-31 | 1 | -30/+30 |
| | | | | | Old code used `cfg_if!` because rustc still parses code inside disabled cfg's, and Rust stable at that time couldn't parse the new GAT where-clause location. This is not the case anymore. | ||||
| * | split `embassy-util` into `embassy-futures`, `embassy-sync`. | Dario Nieuwenhuis | 2022-08-22 | 1 | -1/+1 |
| | | |||||
| * | Split embassy-time from embassy-executor. | Dario Nieuwenhuis | 2022-08-18 | 1 | -2/+2 |
| | | |||||
| * | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | 2022-07-29 | 1 | -3/+3 |
| | | |||||
| * | nrf: replace PhantomData usages with PeripheralRef. | Dario Nieuwenhuis | 2022-07-23 | 1 | -6/+5 |
| | | |||||
| * | Rename Unborrowed -> PeripheralRef, Unborrow -> Peripheral | Dario Nieuwenhuis | 2022-07-23 | 1 | -8/+8 |
| | | |||||
| * | Associated type | Henrik Alsér | 2022-07-09 | 1 | -2/+3 |
| | | |||||
| * | Shared buses with SetConfig | Henrik Alsér | 2022-07-08 | 1 | -0/+10 |
| | | |||||
| * | Run rustfmt. | Dario Nieuwenhuis | 2022-06-12 | 1 | -67/+21 |
| | | |||||
| * | Add embassy-cortex-m crate. | Dario Nieuwenhuis | 2022-06-12 | 1 | -2/+2 |
| | | | | | | | - Move Interrupt and InterruptExecutor from `embassy` to `embassy-cortex-m`. - Move Unborrow from `embassy` to `embassy-hal-common` (nothing in `embassy` requires it anymore) - Move PeripheralMutex from `embassy-hal-common` to `embassy-cortex-m`. | ||||
| * | nrf/twim: allow zero length transfers. | Dario Nieuwenhuis | 2022-06-07 | 1 | -10/+14 |
| | | |||||
| * | nrf/twim: add blocking methods variants with timeout. | Dario Nieuwenhuis | 2022-05-03 | 1 | -0/+124 |
| | | |||||
| * | nrf/twim: add option for high drive. | Dario Nieuwenhuis | 2022-05-03 | 1 | -2/+14 |
| | | |||||
| * | Update rust nightly, embedded-hal 1.0, embedded-hal-async. | Dario Nieuwenhuis | 2022-03-11 | 1 | -40/+31 |
| | | |||||
| * | Move EasyDMA documentation to module level | Til Blechschmidt | 2022-03-08 | 1 | -1/+7 |
| | | |||||
| * | Refactor _from_ram methods to use more readable copy operation | Til Blechschmidt | 2022-03-02 | 1 | -11/+6 |
| | | |||||
