Skip to content

Commit 3aa8430

Browse files
committed
Update to 0.7.0
1 parent 3185652 commit 3aa8430

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,18 @@
22

33
In this repository, changes are made in branches which are merged into **develop**. Those changes should also update this file under "Unreleased Changes". Periodically a release branch is made which updates the crate version in `Cargo.toml` and is merged into **main**. The **main** branch thus only has commits corresponding to releases of the firmware. Once the release has been merged into **main** it is tagged, and the changes are then merged back into **develop**.
44

5-
## Unreleased Changes ([Source](https://github.com/neotron-compute/neotron-pico-bios/tree/develop) | [Changes](https://github.com/neotron-compute/neotron-pico-bios/compare/v0.6.0...develop))
5+
## Unreleased Changes ([Source](https://github.com/neotron-compute/neotron-pico-bios/tree/develop) | [Changes](https://github.com/neotron-compute/neotron-pico-bios/compare/v0.7.0...develop))
66

7-
* Use OS 0.6.0
7+
* None
8+
9+
## v0.7.0 ([Source](https://github.com/neotron-compute/neotron-pico-bios/tree/v0.7.0) | [Release](https://github.com/neotron-compute/neotron-pico-bios/release/tag/v0.7.0))
10+
11+
* Use OS 0.7.1
812
* Support changing video mode
913
* I2S Audio output
1014
* Audio CODEC mixer support
1115
* Support 1-bpp 640x480 bitmap mode, and changing the framebuffer pointer
16+
* Optimise the video drawing code (fewer function calls into flash)
1217
* Run SD Card at 25 MHz
1318
* Switch instructions to recommend `probe-rs` for flashing
1419
* Support reboot from OS
@@ -17,6 +22,7 @@ In this repository, changes are made in branches which are merged into **develop
1722
* Use `vte` crate for ANSI parsing for the BIOS logo
1823
* Support I2C access from the OS
1924
* Support changing the Audio CODEC settings
25+
* List Neotron Bus devices via BIOS API
2026

2127
## v0.6.0 ([Source](https://github.com/neotron-compute/neotron-pico-bios/tree/v0.6.0) | [Release](https://github.com/neotron-compute/neotron-pico-bios/release/tag/v0.6.0))
2228

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resolver = "2"
55
readme = "README.md"
66
license = "GPL-3.0-or-later"
77
name = "neotron-pico-bios"
8-
version = "0.6.0"
8+
version = "0.7.0"
99

1010
[dependencies]
1111
# Useful Cortex-M specific functions (e.g. SysTick)
@@ -91,4 +91,4 @@ check-stack = []
9191
# Patched to include the WriteIterRead trait on i2c
9292
rp2040-hal = { git = "https://github.com/rp-rs/rp-hal", rev = "9c17a2d" }
9393
# Patched to include the WriteIterRead trait on i2c
94-
shared-bus = { git = "https://github.com/thejpster/shared-bus", branch = "add-iter-traits" }
94+
shared-bus = { git = "https://github.com/thejpster/shared-bus", rev = "639a2e6" }

0 commit comments

Comments
 (0)