Compare commits
4 Commits
eaef3d27e6
...
va108xx-ha
Author | SHA1 | Date | |
---|---|---|---|
d419325312 | |||
561a8419c5
|
|||
9bd8efcada | |||
b401085f32 |
@ -27,8 +27,8 @@ embassy-executor = { version = "0.7", features = [
|
|||||||
"executor-interrupt"
|
"executor-interrupt"
|
||||||
]}
|
]}
|
||||||
|
|
||||||
va108xx-hal = { version = "0.10" }
|
va108xx-hal = { version = "0.11", path = "../../va108xx-hal" }
|
||||||
va108xx-embassy = { version = "0.2" }
|
va108xx-embassy = { version = "0.2", path = "../../va108xx-embassy" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["ticks-hz-1_000", "va108xx-embassy/irq-oc30-oc31"]
|
default = ["ticks-hz-1_000", "va108xx-embassy/irq-oc30-oc31"]
|
||||||
|
@ -22,5 +22,5 @@ rtic-sync = { version = "1.3", features = ["defmt-03"] }
|
|||||||
once_cell = {version = "1", default-features = false, features = ["critical-section"]}
|
once_cell = {version = "1", default-features = false, features = ["critical-section"]}
|
||||||
ringbuf = { version = "0.4.7", default-features = false, features = ["portable-atomic"] }
|
ringbuf = { version = "0.4.7", default-features = false, features = ["portable-atomic"] }
|
||||||
|
|
||||||
va108xx-hal = { version = "0.10" }
|
va108xx-hal = { version = "0.11", path = "../../va108xx-hal" }
|
||||||
vorago-reb1 = { version = "0.8" }
|
vorago-reb1 = { version = "0.8", path = "../../vorago-reb1" }
|
||||||
|
@ -16,8 +16,10 @@ embedded-io = "0.6"
|
|||||||
cortex-m-semihosting = "0.5.0"
|
cortex-m-semihosting = "0.5.0"
|
||||||
|
|
||||||
[dependencies.va108xx-hal]
|
[dependencies.va108xx-hal]
|
||||||
version = "0.10"
|
version = "0.11"
|
||||||
|
path = "../../va108xx-hal"
|
||||||
features = ["rt", "defmt"]
|
features = ["rt", "defmt"]
|
||||||
|
|
||||||
[dependencies.vorago-reb1]
|
[dependencies.vorago-reb1]
|
||||||
version = "0.8"
|
version = "0.8"
|
||||||
|
path = "../../vorago-reb1"
|
||||||
|
@ -20,7 +20,7 @@ embassy-time-queue-utils = "0.1"
|
|||||||
|
|
||||||
once_cell = { version = "1", default-features = false, features = ["critical-section"] }
|
once_cell = { version = "1", default-features = false, features = ["critical-section"] }
|
||||||
|
|
||||||
va108xx-hal = { version = "0.10" }
|
va108xx-hal = { version = "0.11", path = "../va108xx-hal" }
|
||||||
|
|
||||||
[target.'cfg(all(target_arch = "arm", target_os = "none"))'.dependencies]
|
[target.'cfg(all(target_arch = "arm", target_os = "none"))'.dependencies]
|
||||||
portable-atomic = { version = "1", features = ["unsafe-assume-single-core"] }
|
portable-atomic = { version = "1", features = ["unsafe-assume-single-core"] }
|
||||||
|
@ -114,14 +114,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
- Updated `embedded-hal` to v1
|
- Updated `embedded-hal` to v1
|
||||||
- Added optional `defmt` v0.3 feature and support.
|
- Added optional `defmt` v0.3 feature and support.
|
||||||
|
|
||||||
## [v0.5.2] 2024-06-16
|
## v0.5.2 2024-06-16
|
||||||
|
|
||||||
## Fixed
|
## Fixed
|
||||||
|
|
||||||
- Replaced usage to `ptr::write_volatile` in UART module which is denied on more recent Rust
|
- Replaced usage to `ptr::write_volatile` in UART module which is denied on more recent Rust
|
||||||
compilers.
|
compilers.
|
||||||
|
|
||||||
## [v0.5.1]
|
## v0.5.1
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
|
|
||||||
@ -130,7 +130,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
- `once_cell` to 1.12.0
|
- `once_cell` to 1.12.0
|
||||||
- Other dependencies: Only revision has changed
|
- Other dependencies: Only revision has changed
|
||||||
|
|
||||||
## [v0.5.0]
|
## v0.5.0
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
@ -143,14 +143,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
- Bugfix in UART code where RX and TX could not be enabled or disabled independently
|
- Bugfix in UART code where RX and TX could not be enabled or disabled independently
|
||||||
|
|
||||||
## [v0.4.3]
|
## v0.4.3
|
||||||
|
|
||||||
- Various smaller fixes for READMEs, update of links in documentation
|
- Various smaller fixes for READMEs, update of links in documentation
|
||||||
- Simplified CI for github, do not use `cross`
|
- Simplified CI for github, do not use `cross`
|
||||||
- New `blinky-pac` example
|
- New `blinky-pac` example
|
||||||
- Use HAL delay in `blinky` example
|
- Use HAL delay in `blinky` example
|
||||||
|
|
||||||
## [v0.4.2]
|
## v0.4.2
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
@ -160,24 +160,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
- Clear TX and RX FIFO in SPI transfer function
|
- Clear TX and RX FIFO in SPI transfer function
|
||||||
|
|
||||||
## [v0.4.1]
|
## v0.4.1
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Initial blockmode setting was not set in SPI constructor
|
- Initial blockmode setting was not set in SPI constructor
|
||||||
|
|
||||||
## [v0.4.0]
|
## v0.4.0
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Replaced `Hertz` by `impl Into<Hertz>` completely and removed
|
- Replaced `Hertz` by `impl Into<Hertz>` completely and removed
|
||||||
`+ Copy` where not necessary
|
`+ Copy` where not necessary
|
||||||
|
|
||||||
## [v0.3.1]
|
## v0.3.1
|
||||||
|
|
||||||
- Updated all links to point to new repository
|
- Updated all links to point to new repository
|
||||||
|
|
||||||
## [v0.3.0]
|
## v0.3.0
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
@ -189,7 +189,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
- Primary repository now hosted on IRS external git: https://egit.irs.uni-stuttgart.de/rust/va108xx-hal
|
- Primary repository now hosted on IRS external git: https://egit.irs.uni-stuttgart.de/rust/va108xx-hal
|
||||||
- Relicensed as Apache-2.0
|
- Relicensed as Apache-2.0
|
||||||
|
|
||||||
## [0.2.3]
|
## v0.2.3
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
@ -201,7 +201,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
- Improved Timer API. It is now possible to simply use `new` on `CountDownTimer`
|
- Improved Timer API. It is now possible to simply use `new` on `CountDownTimer`
|
||||||
|
|
||||||
## [0.2.2]
|
## v0.2.2
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
@ -213,7 +213,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
- API which expects values in Hertz now uses `impl Into<Hertz>` as input parameter
|
- API which expects values in Hertz now uses `impl Into<Hertz>` as input parameter
|
||||||
|
|
||||||
## [0.2.1]
|
## v0.2.1
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
@ -227,7 +227,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
- Moved the `FilterClkSel` struct to the `clock` module, re-exporting in `gpio`
|
- Moved the `FilterClkSel` struct to the `clock` module, re-exporting in `gpio`
|
||||||
- Clearing output state at initialization of Output pins
|
- Clearing output state at initialization of Output pins
|
||||||
|
|
||||||
## [0.2.0]
|
## v0.2.0
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
@ -242,7 +242,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
- Some bugfixes for GPIO implementation
|
- Some bugfixes for GPIO implementation
|
||||||
- Rust edition updated to 2021
|
- Rust edition updated to 2021
|
||||||
|
|
||||||
## [0.1.0]
|
## v0.1.0
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "va108xx-hal"
|
name = "va108xx-hal"
|
||||||
version = "0.10.0"
|
version = "0.11.0"
|
||||||
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
authors = ["Robin Mueller <muellerr@irs.uni-stuttgart.de>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "HAL for the Vorago VA108xx family of microcontrollers"
|
description = "HAL for the Vorago VA108xx family of microcontrollers"
|
||||||
|
@ -18,7 +18,7 @@ nb = "1"
|
|||||||
bitfield = ">=0.17, <=0.18"
|
bitfield = ">=0.17, <=0.18"
|
||||||
max116xx-10bit = "0.3"
|
max116xx-10bit = "0.3"
|
||||||
|
|
||||||
va108xx-hal = { version = "0.10", features = ["rt"] }
|
va108xx-hal = { version = ">=0.10, <=0.11", path = "../va108xx-hal", features = ["rt"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
rt = ["va108xx-hal/rt"]
|
rt = ["va108xx-hal/rt"]
|
||||||
|
Reference in New Issue
Block a user