| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix: Added recommended HTCR0 value to WBA6 RNG | Gerzain Mata | 2025-12-15 | 1 | -1/+24 |
| | | |||||
| * | Rustfmt for edition 2024. | Dario Nieuwenhuis | 2025-10-06 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #4476 from rursprung/impl-Debug-for-Delay | Ulf Lilleengen | 2025-07-29 | 1 | -7/+13 |
| | | | | | `embassy-time`: add missing `Debug` & `defmt::Format` derives | ||||
| * | Add rand-core v0.9 support. | Dario Nieuwenhuis | 2025-05-18 | 1 | -17/+47 |
| | | | | | Co-Authored-By: Aurélien Jacobs <[email protected]> | ||||
| * | Impl Drop for stm32 Rng | Tobias Naumann | 2025-05-16 | 1 | -0/+9 |
| | | |||||
| * | Remove Peripheral trait, rename PeripheralRef->Peri. | Dario Nieuwenhuis | 2025-03-27 | 1 | -6/+5 |
| | | |||||
| * | chore: fix build | elagil | 2025-01-03 | 1 | -4/+4 |
| | | |||||
| * | Add Clone and Copy to Error types | dvdsk | 2024-06-06 | 1 | -1/+1 |
| | | | | | | None of them are `non-exaustative`, they are all small enough to be copy (I estimate none are larger than 4 bytes). | ||||
| * | stm32/rcc: replace generated enable/disable code with runtime info | Jan Špaček | 2024-05-25 | 1 | -2/+2 |
| | | |||||
| * | stm32: use private_bounds for sealed traits. | Dario Nieuwenhuis | 2024-03-23 | 1 | -8/+5 |
| | | |||||
| * | stm32: doc everything else. | Dario Nieuwenhuis | 2023-12-19 | 1 | -0/+1 |
| | | |||||
| * | stm32: more docs. | Dario Nieuwenhuis | 2023-12-19 | 1 | -0/+1 |
| | | |||||
| * | stm32: more docs. | Dario Nieuwenhuis | 2023-12-18 | 1 | -1/+14 |
| | | |||||
| * | stm32/rng: add test. | Dario Nieuwenhuis | 2023-10-16 | 1 | -1/+1 |
| | | |||||
| * | enable clock first | pbert | 2023-10-12 | 1 | -1/+1 |
| | | |||||
| * | STM32: combine RccPeripherals reset() and enable() to reset_and_enable() | pbert | 2023-10-12 | 1 | -2/+1 |
| | | |||||
| * | Add some uncontroversial derives to Error types | James Munns | 2023-10-06 | 1 | -0/+1 |
| | | |||||
| * | stm32: avoid useless endian conversion in rng | Loïc Damien | 2023-10-02 | 1 | -2/+2 |
| | | |||||
| * | stm32: fix wait for RNG data | Olle Sandberg | 2023-08-28 | 1 | -21/+25 |
| | | | | | | | | If no data was available to read then the loop would wait for an interrupt and skip to the next chunk without writing the current one. This could cause the given slice to only be partially filled with random data. Fixed by moving the wait to before actually writing data to the chunk. | ||||
| * | fix rng ced toggling sequence on reset. | Lucas Granberg | 2023-08-10 | 1 | -3/+8 |
| | | |||||
| * | stm32/rng: use bind_interrupts!. | Dario Nieuwenhuis | 2023-07-31 | 1 | -52/+34 |
| | | |||||
| * | improve RNG polling | Jan Christoph Bernack | 2023-07-30 | 1 | -39/+66 |
| | | |||||
| * | add RNG conditioning | Jan Christoph Bernack | 2023-07-30 | 1 | -0/+33 |
| | | |||||
| * | Rename embassy-hal-common to embassy-hal-internal, document it's for ↵ | Dario Nieuwenhuis | 2023-07-28 | 1 | -1/+1 |
| | | | | | internal use only. (#1700) | ||||
| * | stm32: update stm32-metapac. | Dario Nieuwenhuis | 2023-06-19 | 1 | -25/+19 |
| | | |||||
| * | Add `rt` feature to HALs, cfg out interrupt handling when not set. | Dario Nieuwenhuis | 2023-06-08 | 1 | -0/+2 |
| | | |||||
| * | rustfmt | Lucas Granberg | 2023-02-09 | 1 | -1/+2 |
| | | |||||
| * | Use rng_v2 cfg instead of chip specific for seed error recover hack | Lucas Granberg | 2023-02-09 | 1 | -2/+1 |
| | | |||||
| * | hack for STM32WL, rcc reset in case of seed error | Lucas Granberg | 2023-02-08 | 1 | -0/+5 |
| | | | | | | The STM32WL series has a more complicated rng device that gets stuck when there is a seed error. | ||||
| * | Reset rng in case of clock or seed error | Lucas Granberg | 2023-02-08 | 1 | -2/+4 |
| | | |||||
| * | Replace futures::future::poll_fn -> core::future::poll_fn. | Dario Nieuwenhuis | 2022-09-22 | 1 | -1/+1 |
| | | |||||
| * | split `embassy-util` into `embassy-futures`, `embassy-sync`. | Dario Nieuwenhuis | 2022-08-22 | 1 | -1/+1 |
| | | |||||
| * | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | 2022-07-29 | 1 | -1/+1 |
| | | |||||
| * | Rename Unborrowed -> PeripheralRef, Unborrow -> Peripheral | Dario Nieuwenhuis | 2022-07-23 | 1 | -5/+5 |
| | | |||||
| * | Update embassy-stm32 | Dario Nieuwenhuis | 2022-07-23 | 1 | -8/+3 |
| | | |||||
| * | Run rustfmt. | Dario Nieuwenhuis | 2022-06-12 | 1 | -3/+2 |
| | | |||||
| * | Add embassy-cortex-m crate. | Dario Nieuwenhuis | 2022-06-12 | 1 | -1/+1 |
| | | | | | | | - 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`. | ||||
| * | stm32: move macrotables to embassy-stm32 build.rs | Dario Nieuwenhuis | 2022-02-26 | 1 | -2/+2 |
| | | |||||
| * | Add missing `+ 'd` on unborrows. | Dario Nieuwenhuis | 2022-02-10 | 1 | -6/+11 |
| | | |||||
| * | traits: migrate Delay to embedded-hal 1.0+async, remove Rng and Flash. | Dario Nieuwenhuis | 2022-01-27 | 1 | -50/+40 |
| | | |||||
| * | Remove unneeded rustfmt::skip | Ulf Lilleengen | 2021-12-16 | 1 | -2/+4 |
| | | |||||
| * | embassy: Refactor module structure to remove kitchen-sink `util`. | Dario Nieuwenhuis | 2021-09-11 | 1 | -1/+2 |
| | | |||||
| * | Rename Random impl to Rng. | Bob McWhirter | 2021-09-01 | 1 | -27/+5 |
| | | | | | Create Random struct providing next_x(range) for all T:Rng. | ||||
| * | Move random utils to another trait. | Bob McWhirter | 2021-08-30 | 1 | -0/+2 |
| | | |||||
| * | Add a convenience next(range) to Rng. | Bob McWhirter | 2021-08-27 | 1 | -0/+20 |
| | | |||||
| * | Fixes #374: Ensure Rng's error is defmt-able. | Bob McWhirter | 2021-08-26 | 1 | -0/+1 |
| | | |||||
| * | stm32: add missing `+ 'a` bounds on trait GATs | Dario Nieuwenhuis | 2021-08-04 | 1 | -1/+1 |
| | | |||||
| * | Rename embassy-extras to embassy-hal-common | Dario Nieuwenhuis | 2021-07-29 | 1 | -1/+1 |
| | | |||||
| * | Enable clock for RNG | Ulf Lilleengen | 2021-06-09 | 1 | -1/+3 |
| | | |||||
| * | General clean-up and removal of dead code. | Bob McWhirter | 2021-06-03 | 1 | -28/+0 |
| | | |||||
