Skip to content

Commit

Permalink
Merge pull request 'prepare HAL release' (#18) from prep-hal-release …
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu committed Sep 30, 2024
2 parents 48dd006 + 46df7f1 commit 307174b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
1 change: 0 additions & 1 deletion board-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ embedded-hal-nb = "1"
embedded-io = "0.6"

[dependencies.va108xx-hal]
version = "0.7"
path = "../va108xx-hal"
features = ["rt"]

2 changes: 2 additions & 0 deletions va108xx-hal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [unreleased]

## [v0.8.0] 2024-09-30

## Changed

- Improves `CascardSource` handling and general API when chosing cascade sources.
Expand Down
2 changes: 1 addition & 1 deletion va108xx-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "va108xx-hal"
version = "0.7.0"
version = "0.8.0"
authors = ["Robin Mueller <[email protected]>"]
edition = "2021"
description = "HAL for the Vorago VA108xx family of microcontrollers"
Expand Down
7 changes: 4 additions & 3 deletions va108xx-hal/src/uart.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
//! ## Examples
//!
//! - [UART simple example](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/examples/simple/examples/uart.rs)
//! - [UART with IRQ and RTIC](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/va108xx-update-package/examples/rtic/src/bin/uart-rtic.rs)
//! - [UART with IRQ and RTIC](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/examples/rtic/src/bin/uart-echo-rtic.rs)
//! - [Flashloader exposing a CCSDS interface via UART](https://egit.irs.uni-stuttgart.de/rust/va108xx-rs/src/branch/main/flashloader)
use core::{convert::Infallible, ops::Deref};
use fugit::RateExtU32;
use va108xx::Uarta;
Expand Down Expand Up @@ -863,7 +864,7 @@ impl<Uart: Instance> Tx<Uart> {
///
/// This does not necesarily mean that the FIFO can process another word because it might be
/// full.
/// Use the [Self::read_fifo] function to write a word to the FIFO reliably using the [nb]
/// Use the [Self::write_fifo] function to write a word to the FIFO reliably using the [nb]
/// API.
#[inline(always)]
pub fn write_fifo_unchecked(&self, data: u32) {
Expand Down Expand Up @@ -916,7 +917,7 @@ impl<Uart: Instance> embedded_io::Write for Tx<Uart> {

/// Serial receiver, using interrupts to offload reading to the hardware.
///
/// You can use [Rx::to_rx_with_irq] to convert a normal [Rx] structure into this structure.
/// You can use [Rx::into_rx_with_irq] to convert a normal [Rx] structure into this structure.
/// This structure provides two distinct ways to read the UART RX using interrupts. It should
/// be noted that the interrupt service routine (ISR) still has to be provided by the user. However,
/// this structure provides API calls which can be used inside the ISRs to simplify the reading
Expand Down
2 changes: 1 addition & 1 deletion vorago-reb1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ bitfield = "0.17"
version = "0.3"

[dependencies.va108xx-hal]
version = ">=0.7, <0.8"
version = ">=0.7, <=0.8"
path = "../va108xx-hal"
features = ["rt"]

Expand Down

0 comments on commit 307174b

Please sign in to comment.