Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

## [Unreleased]

## [0.4.1] - 2026-05-07

### Added

- `tinyboot-ch32`: re-export `ch32-metapac` as `tinyboot_ch32::pac` so bootloader binaries can do register-level customization (e.g. clock or flash-latency setup before `boot::run`) without a separate metapac dep.
- `BaudRate` enum extended up to 3 Mbps (`B500000`, `B750000`, `B1000000`, `B1500000`, `B2000000`, `B3000000`).

### Changed

- `tinyboot` (CLI): on a single-wire bus the host hears its own request frame back; the client now skips frames whose status is `Request` so single-wire / DXL TTL setups work without extra flags.

## [0.4.0] - 2026-04-19

### Added
Expand Down
4 changes: 2 additions & 2 deletions ch32/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tinyboot-ch32"
description = "tinyboot ch32 implementation"
version = "0.4.0"
version = "0.4.1"
edition.workspace = true
repository.workspace = true
license.workspace = true
Expand Down Expand Up @@ -53,7 +53,7 @@ license = "MIT OR Apache-2.0"

[workspace.dependencies]
tinyboot-core = { version = "0.4.0", path = "../lib/core", default-features = false }
tinyboot-ch32 = { version = "0.4.0", path = ".", default-features = false }
tinyboot-ch32 = { version = "0.4.1", path = ".", default-features = false }
embedded-hal = "1"
embedded-io = "0.7"
embedded-storage = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tinyboot"
description = "CLI firmware flasher for tinyboot bootloader"
version = "0.4.0"
version = "0.4.1"
edition = "2024"
repository = "https://github.com/OpenServoCore/tinyboot"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/ch32/v003/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/ch32/v00x/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/ch32/v103/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.