aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32/src/crc/v1.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* stm32: Improvements to CRC HAL.Kevin P. Fleming2025-05-261-14/+2
| | | | | | | | | | | | * 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-8/+3
|
* stm32/rcc: replace generated enable/disable code with runtime infoJan Špaček2024-05-251-3/+2
|
* stm32/spi,crc: update for new PACMichael Zill2024-04-141-0/+12
|
* stm32: use private_bounds for sealed traits.Dario Nieuwenhuis2024-03-231-1/+1
|
* stm32: more docs.Dario Nieuwenhuis2023-12-181-0/+4
|
* enable clock firstpbert2023-10-121-1/+1
|
* STM32: combine RccPeripherals reset() and enable() to reset_and_enable()pbert2023-10-121-3/+1
|
* 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-6/+4
|
* Rename Unborrowed -> PeripheralRef, Unborrow -> PeripheralDario Nieuwenhuis2022-07-231-6/+6
|
* Update embassy-stm32Dario Nieuwenhuis2022-07-231-10/+5
|
* 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`.
* Add missing `+ 'd` on unborrows.Dario Nieuwenhuis2022-02-101-3/+7
|
* Cargo fmtJoshua Salzedo2021-09-271-4/+2
|
* Fix variable names in crc_v2/v3.Joshua Salzedo2021-09-271-8/+2
| | | | | | 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-1/+6
| | | | | sort feature gates fix repetition in CRC config names
* Expose read so the value can be obtained without a write.Joshua Salzedo2021-09-261-5/+6
|
* Fix interface changesJoshua Salzedo2021-09-261-3/+3
|
* First pass at CRC_V1Joshua Salzedo2021-09-261-7/+40
|
* Start work on CRC_v1Joshua Salzedo2021-09-261-0/+21