Merge pull request #3 from rp-rs/hal-0.7

Update to rp2040-hal 0.7.0 and prepare release of BSP crates
This commit is contained in:
Jan Niehusmann 2022-12-11 23:05:33 +01:00 committed by GitHub
commit e24d9b9ee9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
43 changed files with 209 additions and 64 deletions

View file

@ -23,7 +23,3 @@ members = [
"boards/waveshare-rp2040-zero", "boards/waveshare-rp2040-zero",
"boards/waveshare-rp2040-lcd-0-96", "boards/waveshare-rp2040-lcd-0-96",
] ]
[patch.crates-io]
rp2040-hal = { git = "https://github.com/rp-rs/rp-hal", ref = "06a6e18862d05456cc541b8dd75ee2005a580a82" }
i2c-pio = { git = "https://github.com/rp-rs/i2c-pio-rs" }

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.5.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
## 0.4.0 - 2022-08-26 ## 0.4.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "adafruit-feather-rp2040" name = "adafruit-feather-rp2040"
version = "0.4.0" version = "0.5.0"
authors = ["Andrea Nall <anall@andreanal.com>", "The rp-rs Developers"] authors = ["Andrea Nall <anall@andreanal.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/adafruit-feather-rp2040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/adafruit-feather-rp2040"
@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
[dev-dependencies] [dev-dependencies]
@ -22,7 +22,7 @@ embedded-hal ="0.2.5"
fugit = "0.3.5" fugit = "0.3.5"
nb = "1.0.0" nb = "1.0.0"
smart-leds = "0.3.0" smart-leds = "0.3.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
[features] [features]
# This is the set of features we enable by default # This is the set of features we enable by default

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.5.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
## 0.4.0 - 2022-08-26 ## 0.4.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "adafruit-itsy-bitsy-rp2040" name = "adafruit-itsy-bitsy-rp2040"
version = "0.4.0" version = "0.5.0"
authors = ["Andrew Christiansen <andrewtaylorchristiansen@gmail.com>", "The rp-rs Developers"] authors = ["Andrew Christiansen <andrewtaylorchristiansen@gmail.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/adafruit_itsy_bitsy_rp2040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/adafruit_itsy_bitsy_rp2040"
@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
[dev-dependencies] [dev-dependencies]
@ -21,7 +21,7 @@ panic-halt= "0.2.0"
embedded-hal ="0.2.5" embedded-hal ="0.2.5"
smart-leds = "0.3" smart-leds = "0.3"
nb = "1.0.0" nb = "1.0.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
fugit = "0.3.5" fugit = "0.3.5"
[features] [features]

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.5.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
## 0.4.0 - 2022-08-26 ## 0.4.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "adafruit-kb2040" name = "adafruit-kb2040"
version = "0.4.0" version = "0.5.0"
authors = ["Andrew Christiansen <andrewtaylorchristiansen@gmail.com>", "The rp-rs Developers"] authors = ["Andrew Christiansen <andrewtaylorchristiansen@gmail.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/adafruit-kb2040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/adafruit-kb2040"
@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7.0", optional = true } cortex-m-rt = { version = "0.7.0", optional = true }
embedded-hal = { version = "0.2.4", features = ["unproven"] } embedded-hal = { version = "0.2.4", features = ["unproven"] }
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
@ -23,7 +23,7 @@ rp2040-boot2 = "0.2"
smart-leds = "0.3.0" smart-leds = "0.3.0"
fugit = "0.3.5" fugit = "0.3.5"
nb = "1.0.0" nb = "1.0.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
[features] [features]
# This is the set of features we enable by default # This is the set of features we enable by default

View file

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.5.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
## 0.4.0 - 2022-08-26 ## 0.4.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "adafruit-macropad" name = "adafruit-macropad"
version = "0.4.0" version = "0.5.0"
authors = ["Andrea Nall <anall@andreanal.com>", "The rp-rs Developers"] authors = ["Andrea Nall <anall@andreanal.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/adafruit_macropad" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/adafruit_macropad"
@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
[dev-dependencies] [dev-dependencies]

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.5.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
## 0.4.0 - 2022-08-26 ## 0.4.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "adafruit-qt-py-rp2040" name = "adafruit-qt-py-rp2040"
version = "0.4.0" version = "0.5.0"
authors = ["Stephen Onnen <stephen.onnen@gmail.com>", "The rp-rs Developers"] authors = ["Stephen Onnen <stephen.onnen@gmail.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/adafruit-qt-py-rp2040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/adafruit-qt-py-rp2040"
@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
@ -21,7 +21,7 @@ panic-halt= "0.2.0"
embedded-hal ="0.2.5" embedded-hal ="0.2.5"
smart-leds = "0.3" smart-leds = "0.3"
nb = "1.0.0" nb = "1.0.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
fugit = "0.3.5" fugit = "0.3.5"
[features] [features]

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.4.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
## 0.3.0 - 2022-08-26 ## 0.3.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "adafruit-trinkey-qt2040" name = "adafruit-trinkey-qt2040"
version = "0.3.0" version = "0.4.0"
authors = ["The rp-rs Developers"] authors = ["The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/adafruit-trinkey-qt2040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/adafruit-trinkey-qt2040"
@ -11,7 +11,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7.0", optional = true } cortex-m-rt = { version = "0.7.0", optional = true }
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
@ -20,7 +20,7 @@ panic-halt= "0.2.0"
embedded-hal ="0.2.5" embedded-hal ="0.2.5"
smart-leds = "0.3" smart-leds = "0.3"
nb = "1.0.0" nb = "1.0.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
fugit = "0.3.5" fugit = "0.3.5"
[features] [features]

View file

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.4.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
## 0.3.0 - 2022-08-26 ## 0.3.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "arduino_nano_connect" name = "arduino_nano_connect"
version = "0.3.0" version = "0.4.0"
authors = ["splicedbread <dxbunrated@gmail.com>", "The rp-rs Developers"] authors = ["splicedbread <dxbunrated@gmail.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/arduino_nano_connect" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/arduino_nano_connect"
@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.3" cortex-m = "0.7.3"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7.0", optional = true } cortex-m-rt = { version = "0.7.0", optional = true }
embedded-hal = { version = "0.2.4", features = ["unproven"] } embedded-hal = { version = "0.2.4", features = ["unproven"] }

View file

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.3.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
## 0.2.0 - 2022-08-26 ## 0.2.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "pimoroni_badger2040" name = "pimoroni_badger2040"
version = "0.2.0" version = "0.3.0"
authors = ["9names", "The rp-rs Developers"] authors = ["9names", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/pimoroni-badger2040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/pimoroni-badger2040"
@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0"} rp2040-hal = { version = "0.7.0"}
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
fugit = "0.3.5" fugit = "0.3.5"
embedded-hal ="0.2.5" embedded-hal ="0.2.5"

View file

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.5.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
## 0.4.0 - 2022-08-26 ## 0.4.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "pimoroni-pico-explorer" name = "pimoroni-pico-explorer"
version = "0.4.0" version = "0.5.0"
authors = ["Hmvp <hmvp@users.noreply.github.com>", "The rp-rs Developers"] authors = ["Hmvp <hmvp@users.noreply.github.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/pimoroni-pico-explorer" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/pimoroni-pico-explorer"
@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
embedded-hal = { version = "0.2.4", features = ["unproven"] } embedded-hal = { version = "0.2.4", features = ["unproven"] }
st7789 = "0.6.1" st7789 = "0.6.1"

View file

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.5.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
## 0.4.0 - 2022-08-26 ## 0.4.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "pimoroni-pico-lipo-16mb" name = "pimoroni-pico-lipo-16mb"
version = "0.4.0" version = "0.5.0"
authors = ["Hmvp <hmvp@users.noreply.github.com>", "The rp-rs Developers"] authors = ["Hmvp <hmvp@users.noreply.github.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/pimoroni-pico-lipo-16mb" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/pimoroni-pico-lipo-16mb"
@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.4.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
## 0.3.0 - 2022-08-26 ## 0.3.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "pimoroni-plasma-2040" name = "pimoroni-plasma-2040"
version = "0.3.0" version = "0.4.0"
authors = ["Jordan Williams <jordan@jwillikers.com>", "The rp-rs Developers"] authors = ["Jordan Williams <jordan@jwillikers.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/pimoroni-plasma-2040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/pimoroni-plasma-2040"
@ -13,15 +13,15 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
[dev-dependencies] [dev-dependencies]
rp2040-hal = { version = "0.6.0", features = [ "defmt" ] } rp2040-hal = { version = "0.7.0", features = [ "defmt" ] }
panic-halt= "0.2.0" panic-halt= "0.2.0"
embedded-hal ="0.2.5" embedded-hal ="0.2.5"
smart-leds = "0.3.0" smart-leds = "0.3.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
fugit = "0.3.5" fugit = "0.3.5"
defmt = "0.3.0" defmt = "0.3.0"

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.2.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
## 0.1.0 - 2022-09-06 ## 0.1.0 - 2022-09-06
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "pimoroni-servo2040" name = "pimoroni-servo2040"
version = "0.1.0" version = "0.2.0"
authors = ["Paul Daniel Faria <nashenas88@gmail.com>", "The rp-rs Developers"] authors = ["Paul Daniel Faria <nashenas88@gmail.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/pimoroni-servo2040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/pimoroni-servo2040"
@ -13,11 +13,11 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
[dev-dependencies] [dev-dependencies]
rp2040-hal = { version = "0.6.0", features = [ "defmt" ] } rp2040-hal = { version = "0.7.0", features = [ "defmt" ] }
panic-halt= "0.2.0" panic-halt= "0.2.0"
defmt = "0.3.0" defmt = "0.3.0"
defmt-rtt = "0.4.0" defmt-rtt = "0.4.0"
@ -25,7 +25,7 @@ embedded-hal ="0.2.5"
fugit = "0.3.5" fugit = "0.3.5"
nb = "1.0.0" nb = "1.0.0"
smart-leds = "0.3.0" smart-leds = "0.3.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
[features] [features]
# This is the set of features we enable by default # This is the set of features we enable by default

View file

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.4.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
## 0.3.0 - 2022-08-26 ## 0.3.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "pimoroni-tiny2040" name = "pimoroni-tiny2040"
version = "0.3.0" version = "0.4.0"
authors = ["Mike Bell <mdb036@gmail.com>", "The rp-rs Developers"] authors = ["Mike Bell <mdb036@gmail.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/pimoroni-tiny2040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/pimoroni-tiny2040"
@ -13,11 +13,11 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
[dev-dependencies] [dev-dependencies]
rp2040-hal = { version = "0.6.0", features = [ "defmt" ] } rp2040-hal = { version = "0.7.0", features = [ "defmt" ] }
panic-halt= "0.2.0" panic-halt= "0.2.0"
embedded-hal ="0.2.5" embedded-hal ="0.2.5"
fugit = "0.3.5" fugit = "0.3.5"

View file

@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.6.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
- Update to i2c-pio 0.5.0
### Changed
- Bump `i2c-pio` to 0.4.0
## 0.5.0 - 2022-08-26 ## 0.5.0 - 2022-08-26
### Added ### Added

View file

@ -1,6 +1,6 @@
[package] [package]
name = "rp-pico" name = "rp-pico"
version = "0.5.0" version = "0.6.0"
authors = ["evan <evanmolder@gmail.com>", "The rp-rs Developers"] authors = ["evan <evanmolder@gmail.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/rp-pico" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/rp-pico"
@ -13,22 +13,22 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
fugit = "0.3.5" fugit = "0.3.5"
usb-device= "0.2.9" usb-device= "0.2.9"
[dev-dependencies] [dev-dependencies]
rp2040-hal = { version = "0.6.0", features = [ "defmt" ] } rp2040-hal = { version = "0.7.0", features = [ "defmt" ] }
panic-halt= "0.2.0" panic-halt= "0.2.0"
embedded-hal ="0.2.5" embedded-hal ="0.2.5"
cortex-m-rtic = "1.1.2" cortex-m-rtic = "1.1.2"
nb = "1.0" nb = "1.0"
i2c-pio = "0.4.0" i2c-pio = "0.5.0"
heapless = "0.7.9" heapless = "0.7.9"
embedded-sdmmc = { git = "https://github.com/rust-embedded-community/embedded-sdmmc-rs.git", rev = "db58253bb326d20e177c733ebc0b051ef0dcee0f" } embedded-sdmmc = { git = "https://github.com/rust-embedded-community/embedded-sdmmc-rs.git", rev = "db58253bb326d20e177c733ebc0b051ef0dcee0f" }
smart-leds = "0.3.0" smart-leds = "0.3.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
ssd1306 = "0.7.0" ssd1306 = "0.7.0"
embedded-graphics = "0.7.1" embedded-graphics = "0.7.1"
hd44780-driver = "0.4.0" hd44780-driver = "0.4.0"

View file

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.3.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
## 0.2.0 - 2022-08-26 ## 0.2.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "seeeduino-xiao-rp2040" name = "seeeduino-xiao-rp2040"
version = "0.2.0" version = "0.3.0"
authors = ["Philip L. McMahon <plm@users.noreply.github.com>", "The rp-rs Developers"] authors = ["Philip L. McMahon <plm@users.noreply.github.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/seeeduino-xiao-rp02040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/seeeduino-xiao-rp02040"
@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.4.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
## 0.3.0 - 2022-08-26 ## 0.3.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "solderparty-rp2040-stamp" name = "solderparty-rp2040-stamp"
version = "0.3.0" version = "0.4.0"
authors = ["The rp-rs Developers"] authors = ["The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/solderparty-rp2040-stamp" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/solderparty-rp2040-stamp"
@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
[dev-dependencies] [dev-dependencies]
@ -22,7 +22,7 @@ embedded-hal ="0.2.5"
nb = "1.0.0" nb = "1.0.0"
smart-leds = "0.3.0" smart-leds = "0.3.0"
pio = "0.2.0" pio = "0.2.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
fugit = "0.3.5" fugit = "0.3.5"
[features] [features]

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.5.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
## 0.4.0 - 2022-08-26 ## 0.4.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "sparkfun-pro-micro-rp2040" name = "sparkfun-pro-micro-rp2040"
version = "0.4.0" version = "0.5.0"
authors = ["Wilfried Chauveau <wilfried.chauveau@ithinuel.me>", "The rp-rs Developers"] authors = ["Wilfried Chauveau <wilfried.chauveau@ithinuel.me>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/sparkfun-pro-micro-rp2040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/sparkfun-pro-micro-rp2040"
@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7.0", optional = true } cortex-m-rt = { version = "0.7.0", optional = true }
embedded-hal = { version = "0.2.4", features = ["unproven"] } embedded-hal = { version = "0.2.4", features = ["unproven"] }
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
@ -22,7 +22,7 @@ panic-halt = "0.2.0"
smart-leds = "0.3.0" smart-leds = "0.3.0"
nb = "1.0.0" nb = "1.0.0"
pio = "0.2.0" pio = "0.2.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
fugit = "0.3.5" fugit = "0.3.5"
[features] [features]

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.4.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
## 0.3.0 - 2022-08-26 ## 0.3.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "sparkfun-thing-plus-rp2040" name = "sparkfun-thing-plus-rp2040"
version = "0.3.0" version = "0.4.0"
authors = ["Tyler Pottenger <tyler.pottenger@gmail.com>", "Wilfried Chauveau <wilfried.chauveau@ithinuel.me>", "The rp-rs Developers"] authors = ["Tyler Pottenger <tyler.pottenger@gmail.com>", "Wilfried Chauveau <wilfried.chauveau@ithinuel.me>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/sparkfun-thing-plus-rp2040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/sparkfun-thing-plus-rp2040"
@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7.0", optional = true } cortex-m-rt = { version = "0.7.0", optional = true }
embedded-hal = { version = "0.2.4", features = ["unproven"] } embedded-hal = { version = "0.2.4", features = ["unproven"] }
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
@ -22,7 +22,7 @@ panic-halt = "0.2.0"
smart-leds = "0.3.0" smart-leds = "0.3.0"
nb = "1.0.0" nb = "1.0.0"
pio = "0.2.0" pio = "0.2.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
fugit = "0.3.5" fugit = "0.3.5"
[features] [features]

View file

@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.3.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
- Update to i2c-pio 0.5.0
### Changed
- Bump `i2c-pio` to 0.5.0
## 0.2.0 - 2022-08-26 ## 0.2.0 - 2022-08-26
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "vcc-gnd-yd-rp2040" name = "vcc-gnd-yd-rp2040"
version = "0.2.0" version = "0.3.0"
authors = ["Nicolas <nleguen@gmail.com>", "The rp-rs Developers"] authors = ["Nicolas <nleguen@gmail.com>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/vcc-gnd-yd-rp2040" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/vcc-gnd-yd-rp2040"
@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
fugit = "0.3.5" fugit = "0.3.5"
usb-device= "0.2.9" usb-device= "0.2.9"
@ -23,7 +23,7 @@ panic-halt= "0.2.0"
embedded-hal ="0.2.5" embedded-hal ="0.2.5"
nb = "1.0" nb = "1.0"
smart-leds = "0.3.0" smart-leds = "0.3.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
pio = "0.2.0" pio = "0.2.0"
[features] [features]

View file

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.5.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
## 0.4.0 - 2022-11-15 ## 0.4.0 - 2022-11-15
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "waveshare-rp2040-lcd-0-96" name = "waveshare-rp2040-lcd-0-96"
version = "0.4.0" version = "0.5.0"
authors = ["René van Dorst <opensource@vdorst.com>", "Andrea Nall <anall@andreanal.com>", "TilCreator <contact.github@tc-j.de>", "The rp-rs Developers"] authors = ["René van Dorst <opensource@vdorst.com>", "Andrea Nall <anall@andreanal.com>", "TilCreator <contact.github@tc-j.de>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/waveshare-rp2040-lcd-0_96" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/waveshare-rp2040-lcd-0_96"
@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
[dev-dependencies] [dev-dependencies]

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.5.0 - 2022-12-11
### Changed
- Update to rp2040-hal 0.7.0
- Update to ws2812-pio 0.5.0
## 0.4.0 - 2022-11-15 ## 0.4.0 - 2022-11-15
### Changed ### Changed

View file

@ -1,6 +1,6 @@
[package] [package]
name = "waveshare-rp2040-zero" name = "waveshare-rp2040-zero"
version = "0.4.0" version = "0.5.0"
authors = ["Andrea Nall <anall@andreanal.com>", "TilCreator <contact.github@tc-j.de>", "The rp-rs Developers"] authors = ["Andrea Nall <anall@andreanal.com>", "TilCreator <contact.github@tc-j.de>", "The rp-rs Developers"]
edition = "2018" edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/waveshare-rp2040-zero" homepage = "https://github.com/rp-rs/rp-hal-boards/tree/main/boards/waveshare-rp2040-zero"
@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal-boards.git"
[dependencies] [dependencies]
cortex-m = "0.7.2" cortex-m = "0.7.2"
rp2040-boot2 = { version = "0.2.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true }
rp2040-hal = { version = "0.6.0" } rp2040-hal = { version = "0.7.0" }
cortex-m-rt = { version = "0.7", optional = true } cortex-m-rt = { version = "0.7", optional = true }
[dev-dependencies] [dev-dependencies]
@ -22,7 +22,7 @@ embedded-hal ="0.2.5"
fugit = "0.3.5" fugit = "0.3.5"
nb = "1.0.0" nb = "1.0.0"
smart-leds = "0.3.0" smart-leds = "0.3.0"
ws2812-pio = "0.4.0" ws2812-pio = "0.5.0"
[features] [features]
# This is the set of features we enable by default # This is the set of features we enable by default