HAL update finished
All checks were successful
Rust/va108xx-rs/pipeline/head This commit looks good

This commit is contained in:
2024-07-04 17:46:17 +02:00
parent 395a6a0538
commit 5a6227e764
10 changed files with 667 additions and 346 deletions

View File

@ -8,7 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [v0.7.0] 2024-07-04
- Replace `uarta` and `uartb` `Uart` constructors by `new` method.
- Replace `uarta` and `uartb` `Uart` constructors by `new` constructor.
- Replace SPI `spia`, `spib` and `spic` constructors by `new` constructor.
- Replace I2C `i2ca`, `i2cb` constructors by `new` constructor. Update constructor
to fail on invalid fast I2C speed system clock values.
## [v0.6.0] 2024-06-16

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,5 @@
//! Prelude
pub use fugit::ExtU32 as _;
pub use fugit::RateExtU32 as _;
pub use crate::time::*;