aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32/src/crc/v2v3.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-2/+2
|
* stm32: Improvements to CRC HAL.Kevin P. Fleming2025-05-261-16/+23
| | | | | | | | | | | | * Corrects spelling and grammar errors in documentation. * Removes non-v1 code from v1-only source file. * Adds 'read' operation for v2/v3, to be consistent with v1. * Removes 'reset' from the v2/v3 'reconfigure' operation to match the documentation (the only user is the 'new' function which already issues a reset).
* Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-271-6/+3
|
* chore: fix buildelagil2025-01-031-1/+1
|
* stm32/rcc: replace generated enable/disable code with runtime infoJan Špaček2024-05-251-3/+2
|
* Add CRCDion Dokter2024-04-141-0/+2
|
* stm32/spi,crc: update for new PACMichael Zill2024-04-131-8/+8
|
* stm32: use private_bounds for sealed traits.Dario Nieuwenhuis2024-03-231-1/+1
|
* stm32: add some docs.Dario Nieuwenhuis2023-12-181-0/+13
|
* enable clock firstpbert2023-10-121-1/+1
|
* STM32: combine RccPeripherals reset() and enable() to reset_and_enable()pbert2023-10-121-5/+2
|
* Rename embassy-hal-common to embassy-hal-internal, document it's for ↵Dario Nieuwenhuis2023-07-281-1/+1
| | | | internal use only. (#1700)
* stm32: update stm32-metapac.Dario Nieuwenhuis2023-06-191-57/+41
|
* Rename Unborrowed -> PeripheralRef, Unborrow -> PeripheralDario Nieuwenhuis2022-07-231-5/+5
|
* Update embassy-stm32Dario Nieuwenhuis2022-07-231-6/+2
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-1/+2
|
* Add embassy-cortex-m crate.Dario Nieuwenhuis2022-06-121-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`.
* Update stm32-metapac.Dario Nieuwenhuis2022-06-071-4/+4
|
* Add missing `+ 'd` on unborrows.Dario Nieuwenhuis2022-02-101-3/+7
|
* Cargo fmtJoshua Salzedo2021-09-271-2/+2
|
* Fix variable names in crc_v2/v3.Joshua Salzedo2021-09-271-13/+13
| | | | | | removed `reclaim` in crc_v1. used write instead of modify. renamed `init` to `reset` in crc_v1.
* Use unborrow for CRC constructorJoshua Salzedo2021-09-271-0/+178
sort feature gates fix repetition in CRC config names