diff --git a/Cargo.toml b/Cargo.toml index 60e3054..8ef3521 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,5 +28,5 @@ rp2040-hal = { path = "./rp2040-hal" } [patch.crates-io] rp2040-hal = { path = "./rp2040-hal" } -i2c-pio = { git = "https://github.com/rp-rs/i2c-pio-rs", rev = "2636fd2abc0541fff3ccca49d7422690bc142d11" } -ws2812-pio = { git = "https://github.com/rp-rs/ws2812-pio-rs", rev = "0b8015499fe3171650f6adef7cd0f4fb61465b61" } +i2c-pio = { git = "https://github.com/rp-rs/i2c-pio-rs", rev = "e1e733bdd0b73944a4ad5afbf2bddce03bd5fdfa" } +ws2812-pio = { git = "https://github.com/rp-rs/ws2812-pio-rs", rev = "8505952e70af1624e3eef9885240b9a6948be12a" } diff --git a/README.md b/README.md index b3b67fa..e510a37 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

- + Logo @@ -192,6 +192,18 @@ RP2040 chip according to how it is connected up on the Trinkey. [Adafruit-Trinkey-QT2040]: https://github.com/rp-rs/rp-hal/tree/main/boards/adafruit-trinkey-qt2040 [adafruit trinkey qt2040]: https://www.adafruit.com/product/5056 +### [pimoroni-badger2040] - Board Support for the [Pimoroni Badger2040] + +You should include this crate if you are writing code that you want to run on +a [Pimoroni Badger2040] - a conference-style badge built around an e-paper +display and an rp2040 + +This crate includes the [rp2040-hal], but also configures each pin of the +RP2040 chip according to how it is connected up on the Badger2040. + +[Pimoroni Badger2040]: https://shop.pimoroni.com/products/badger-2040 +[pimoroni-badger2040]: https://github.com/rp-rs/rp-hal/tree/main/boards/pimoroni-badger2040 + ### [pimoroni-pico-explorer] - Board Support for the [Pimoroni Pico Explorer] You should include this crate if you are writing code that you want to run on @@ -219,6 +231,29 @@ space, and so it may not work if you only have the 4MB variant. [Pimoroni Pico Lipo 16MB]: https://shop.pimoroni.com/products/pimoroni-pico-lipo?variant=39335427080275 [pimoroni-pico-lipo-16mb]: https://github.com/rp-rs/rp-hal/tree/main/boards/pimoroni-pico-lipo-16mb +### [pimoroni-plasma-2040] - Board Support for the [Pimoroni Plasma 2040] + +You should include this crate if you are writing code that you want to run on +a [Pimoroni Plasma 2040] - Swathe everything in rainbows with this all-in-one, USB-C powered controller +for WS2812/Neopixel and APA102/Dotstar addressable LED strip. + +This crate includes the [rp2040-hal], but also configures each pin of the +RP2040 chip according to how it is connected up on the Pimoroni Plasma 2040. + +[Pimoroni Plasma 2040]: https://shop.pimoroni.com/products/plasma-2040 +[pimoroni-plasma-2040]: https://github.com/rp-rs/rp-hal/tree/main/boards/pimoroni-plasma-2040 + +### [pimoroni-tiny2040] - Board Support for the [Pimoroni Tiny2040] + +You should include this crate if you are writing code that you want to run on +a [Pimoroni Tiny2040] - one of the first third party RP2040 boards available, with 8MB flash and a 3 colour LED. + +This crate includes the [rp2040-hal], but also configures each pin of the +RP2040 chip according to how it is connected up on the Tiny2040. + +[Pimoroni Tiny2040]: https://shop.pimoroni.com/products/tiny-2040 +[pimoroni-tiny2040]: https://github.com/rp-rs/rp-hal/tree/main/boards/pimoroni-tiny2040 + ### [solderparty-rp2040-stamp] - Board Support for the [SolderParty RP2040 Stamp] You should include this crate if you are writing code that you want to run on diff --git a/boards/adafruit-feather-rp2040/CHANGELOG.md b/boards/adafruit-feather-rp2040/CHANGELOG.md index 3f50e9c..bd0a640 100644 --- a/boards/adafruit-feather-rp2040/CHANGELOG.md +++ b/boards/adafruit-feather-rp2040/CHANGELOG.md @@ -7,14 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Added - -- None +## 0.4.0 - 2022-08-26 ### Changed - Migrate from `embedded-time` to `fugit` - Bump `ws2812-pio` to 0.4.0 +- Update to rp2040-hal 0.6.0 ## 0.3.0 - 2022-06-13 diff --git a/boards/adafruit-feather-rp2040/Cargo.toml b/boards/adafruit-feather-rp2040/Cargo.toml index 1cb2099..eeea178 100644 --- a/boards/adafruit-feather-rp2040/Cargo.toml +++ b/boards/adafruit-feather-rp2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adafruit-feather-rp2040" -version = "0.3.1" +version = "0.4.0" authors = ["Andrea Nall ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/adafruit-feather-rp2040" @@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" rp2040-boot2 = { version = "0.2.0", optional = true } -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } [dev-dependencies] diff --git a/boards/adafruit-itsy-bitsy-rp2040/CHANGELOG.md b/boards/adafruit-itsy-bitsy-rp2040/CHANGELOG.md index 3f50e9c..bd0a640 100644 --- a/boards/adafruit-itsy-bitsy-rp2040/CHANGELOG.md +++ b/boards/adafruit-itsy-bitsy-rp2040/CHANGELOG.md @@ -7,14 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Added - -- None +## 0.4.0 - 2022-08-26 ### Changed - Migrate from `embedded-time` to `fugit` - Bump `ws2812-pio` to 0.4.0 +- Update to rp2040-hal 0.6.0 ## 0.3.0 - 2022-06-13 diff --git a/boards/adafruit-itsy-bitsy-rp2040/Cargo.toml b/boards/adafruit-itsy-bitsy-rp2040/Cargo.toml index 9a45321..8b77722 100644 --- a/boards/adafruit-itsy-bitsy-rp2040/Cargo.toml +++ b/boards/adafruit-itsy-bitsy-rp2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adafruit-itsy-bitsy-rp2040" -version = "0.3.1" +version = "0.4.0" authors = ["Andrew Christiansen ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/adafruit_itsy_bitsy_rp2040" @@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" rp2040-boot2 = { version = "0.2.0", optional = true } -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } [dev-dependencies] diff --git a/boards/adafruit-kb2040/CHANGELOG.md b/boards/adafruit-kb2040/CHANGELOG.md index 3f50e9c..bd0a640 100644 --- a/boards/adafruit-kb2040/CHANGELOG.md +++ b/boards/adafruit-kb2040/CHANGELOG.md @@ -7,14 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Added - -- None +## 0.4.0 - 2022-08-26 ### Changed - Migrate from `embedded-time` to `fugit` - Bump `ws2812-pio` to 0.4.0 +- Update to rp2040-hal 0.6.0 ## 0.3.0 - 2022-06-13 diff --git a/boards/adafruit-kb2040/Cargo.toml b/boards/adafruit-kb2040/Cargo.toml index 45aa3af..959db63 100644 --- a/boards/adafruit-kb2040/Cargo.toml +++ b/boards/adafruit-kb2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adafruit-kb2040" -version = "0.3.1" +version = "0.4.0" authors = ["Andrew Christiansen ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/adafruit-kb2040" @@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7.0", optional = true } embedded-hal = { version = "0.2.4", features = ["unproven"] } rp2040-boot2 = { version = "0.2.0", optional = true } diff --git a/boards/adafruit-macropad/CHANGELOG.md b/boards/adafruit-macropad/CHANGELOG.md index 0bb0865..07ad921 100644 --- a/boards/adafruit-macropad/CHANGELOG.md +++ b/boards/adafruit-macropad/CHANGELOG.md @@ -7,14 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Added - -- None +## 0.4.0 - 2022-08-26 ### Changed - Use `rp2040-hal`'s entry function. - Migrate from `embedded-time` to `fugit` +- Update to rp2040-hal 0.6.0 ## 0.3.0 - 2022-06-13 diff --git a/boards/adafruit-macropad/Cargo.toml b/boards/adafruit-macropad/Cargo.toml index 1a76d0a..437f9ed 100644 --- a/boards/adafruit-macropad/Cargo.toml +++ b/boards/adafruit-macropad/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adafruit-macropad" -version = "0.3.1" +version = "0.4.0" authors = ["Andrea Nall ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/adafruit_macropad" @@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" rp2040-boot2 = { version = "0.2.0", optional = true } -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } [dev-dependencies] diff --git a/boards/adafruit-qt-py-rp2040/CHANGELOG.md b/boards/adafruit-qt-py-rp2040/CHANGELOG.md index 3f50e9c..bd0a640 100644 --- a/boards/adafruit-qt-py-rp2040/CHANGELOG.md +++ b/boards/adafruit-qt-py-rp2040/CHANGELOG.md @@ -7,14 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Added - -- None +## 0.4.0 - 2022-08-26 ### Changed - Migrate from `embedded-time` to `fugit` - Bump `ws2812-pio` to 0.4.0 +- Update to rp2040-hal 0.6.0 ## 0.3.0 - 2022-06-13 diff --git a/boards/adafruit-qt-py-rp2040/Cargo.toml b/boards/adafruit-qt-py-rp2040/Cargo.toml index d87181f..a018aec 100644 --- a/boards/adafruit-qt-py-rp2040/Cargo.toml +++ b/boards/adafruit-qt-py-rp2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adafruit-qt-py-rp2040" -version = "0.3.1" +version = "0.4.0" authors = ["Stephen Onnen ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/adafruit-qt-py-rp2040" @@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true } diff --git a/boards/adafruit-trinkey-qt2040/CHANGELOG.md b/boards/adafruit-trinkey-qt2040/CHANGELOG.md index b52da37..1c72ae9 100644 --- a/boards/adafruit-trinkey-qt2040/CHANGELOG.md +++ b/boards/adafruit-trinkey-qt2040/CHANGELOG.md @@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.3.0 - 2022-08-26 + ### Changed - Migrate from `embedded-time` to `fugit` - Bump `ws2812-pio` to 0.4.0 +- Update to rp2040-hal 0.6.0 diff --git a/boards/adafruit-trinkey-qt2040/Cargo.toml b/boards/adafruit-trinkey-qt2040/Cargo.toml index 4584745..2e354f0 100644 --- a/boards/adafruit-trinkey-qt2040/Cargo.toml +++ b/boards/adafruit-trinkey-qt2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "adafruit-trinkey-qt2040" -version = "0.2.1" +version = "0.3.0" authors = ["The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/adafruit-trinkey-qt2040" @@ -11,7 +11,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7.0", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true } diff --git a/boards/arduino_nano_connect/CHANGELOG.md b/boards/arduino_nano_connect/CHANGELOG.md index 30d1451..4c1a3cc 100644 --- a/boards/arduino_nano_connect/CHANGELOG.md +++ b/boards/arduino_nano_connect/CHANGELOG.md @@ -7,8 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.3.0 - 2022-08-26 + ### Changed - Use `rp2040-hal`'s entry function. - Migrate from `embedded-time` to `fugit` +- Update to rp2040-hal 0.6.0 + +### Removed + +- Unused dependencies diff --git a/boards/arduino_nano_connect/Cargo.toml b/boards/arduino_nano_connect/Cargo.toml index f8d269c..1aa369c 100644 --- a/boards/arduino_nano_connect/Cargo.toml +++ b/boards/arduino_nano_connect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arduino_nano_connect" -version = "0.2.1" +version = "0.3.0" authors = ["splicedbread ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/arduino_nano_connect" @@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.3" rp2040-boot2 = { version = "0.2.0", optional = true } -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7.0", optional = true } embedded-hal = { version = "0.2.4", features = ["unproven"] } diff --git a/boards/pimoroni-badger2040/CHANGELOG.md b/boards/pimoroni-badger2040/CHANGELOG.md index 30d1451..658c5aa 100644 --- a/boards/pimoroni-badger2040/CHANGELOG.md +++ b/boards/pimoroni-badger2040/CHANGELOG.md @@ -7,8 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.2.0 - 2022-08-26 + ### Changed - Use `rp2040-hal`'s entry function. - Migrate from `embedded-time` to `fugit` +- Update to rp2040-hal 0.6.0 + +### Removed + +- Unused dependencies diff --git a/boards/pimoroni-badger2040/Cargo.toml b/boards/pimoroni-badger2040/Cargo.toml index 288e69c..391f94e 100644 --- a/boards/pimoroni-badger2040/Cargo.toml +++ b/boards/pimoroni-badger2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pimoroni_badger2040" -version = "0.1.0" +version = "0.2.0" authors = ["9names", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/pimoroni-badger2040" @@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" rp2040-boot2 = { version = "0.2.0", optional = true } -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0"} +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0"} cortex-m-rt = { version = "0.7", optional = true } fugit = "0.3.5" embedded-hal ="0.2.5" diff --git a/boards/pimoroni-pico-explorer/CHANGELOG.md b/boards/pimoroni-pico-explorer/CHANGELOG.md index 88031b4..c644841 100644 --- a/boards/pimoroni-pico-explorer/CHANGELOG.md +++ b/boards/pimoroni-pico-explorer/CHANGELOG.md @@ -7,13 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Added - -- None +## 0.4.0 - 2022-08-26 ### Changed - Migrate from `embedded-time` to `fugit` +- Update to rp2040-hal 0.6.0 ## 0.3.0 - 2022-06-13 diff --git a/boards/pimoroni-pico-explorer/Cargo.toml b/boards/pimoroni-pico-explorer/Cargo.toml index 2b25c84..fd7cda0 100644 --- a/boards/pimoroni-pico-explorer/Cargo.toml +++ b/boards/pimoroni-pico-explorer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pimoroni-pico-explorer" -version = "0.3.1" +version = "0.4.0" authors = ["Hmvp ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/pimoroni-pico-explorer" @@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } embedded-hal = { version = "0.2.4", features = ["unproven"] } st7789 = "0.6.1" diff --git a/boards/pimoroni-pico-lipo-16mb/CHANGELOG.md b/boards/pimoroni-pico-lipo-16mb/CHANGELOG.md index 88031b4..c644841 100644 --- a/boards/pimoroni-pico-lipo-16mb/CHANGELOG.md +++ b/boards/pimoroni-pico-lipo-16mb/CHANGELOG.md @@ -7,13 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Added - -- None +## 0.4.0 - 2022-08-26 ### Changed - Migrate from `embedded-time` to `fugit` +- Update to rp2040-hal 0.6.0 ## 0.3.0 - 2022-06-13 diff --git a/boards/pimoroni-pico-lipo-16mb/Cargo.toml b/boards/pimoroni-pico-lipo-16mb/Cargo.toml index 13dfb1f..b68b6b3 100644 --- a/boards/pimoroni-pico-lipo-16mb/Cargo.toml +++ b/boards/pimoroni-pico-lipo-16mb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pimoroni-pico-lipo-16mb" -version = "0.3.1" +version = "0.4.0" authors = ["Hmvp ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/pimoroni-pico-lipo-16mb" @@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true } diff --git a/boards/pimoroni-plasma-2040/CHANGELOG.md b/boards/pimoroni-plasma-2040/CHANGELOG.md index f851a10..1171906 100644 --- a/boards/pimoroni-plasma-2040/CHANGELOG.md +++ b/boards/pimoroni-plasma-2040/CHANGELOG.md @@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.3.0 - 2022-08-26 + ### Changed - Use `rp2040-hal`'s entry function. - Migrate from `embedded-time` to `fugit` - Bump `ws2812-pio` to 0.4.0 +- Update to rp2040-hal 0.6.0 diff --git a/boards/pimoroni-plasma-2040/Cargo.toml b/boards/pimoroni-plasma-2040/Cargo.toml index 8ade908..2a5abc5 100644 --- a/boards/pimoroni-plasma-2040/Cargo.toml +++ b/boards/pimoroni-plasma-2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pimoroni-plasma-2040" -version = "0.2.1" +version = "0.3.0" authors = ["Jordan Williams ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/pimoroni-plasma-2040" @@ -13,11 +13,11 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" rp2040-boot2 = { version = "0.2.0", optional = true } -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } [dev-dependencies] -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0", features = [ "defmt" ] } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0", features = [ "defmt" ] } panic-halt= "0.2.0" embedded-hal ="0.2.5" smart-leds = "0.3.0" diff --git a/boards/pimoroni-tiny2040/CHANGELOG.md b/boards/pimoroni-tiny2040/CHANGELOG.md index fec5162..645016b 100644 --- a/boards/pimoroni-tiny2040/CHANGELOG.md +++ b/boards/pimoroni-tiny2040/CHANGELOG.md @@ -7,7 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.3.0 - 2022-08-26 + ### Changed - Migrate from `embedded-time` to `fugit` +- Update to rp2040-hal 0.6.0 diff --git a/boards/pimoroni-tiny2040/Cargo.toml b/boards/pimoroni-tiny2040/Cargo.toml index cf881be..e1e05f8 100644 --- a/boards/pimoroni-tiny2040/Cargo.toml +++ b/boards/pimoroni-tiny2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pimoroni-tiny2040" -version = "0.2.1" +version = "0.3.0" authors = ["Mike Bell ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/pimoroni-tiny2040" @@ -13,11 +13,11 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" rp2040-boot2 = { version = "0.2.0", optional = true } -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } [dev-dependencies] -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0", features = [ "defmt" ] } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0", features = [ "defmt" ] } panic-halt= "0.2.0" embedded-hal ="0.2.5" fugit = "0.3.5" diff --git a/boards/rp-pico/CHANGELOG.md b/boards/rp-pico/CHANGELOG.md index 793d781..7fa4b72 100644 --- a/boards/rp-pico/CHANGELOG.md +++ b/boards/rp-pico/CHANGELOG.md @@ -7,10 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.5.0 - 2022-08-26 + ### Added - `rp2040-e5` feature enabling the workaround for errata 5 on the USB device peripheral. - Support for critical-section 1.0.0 in the examples. +- Example for the interpolator ### Changed @@ -18,6 +21,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Migrate from `embedded-time` to `fugit` - Bump `ws2812-pio` to 0.4.0 - Bump `i2c-pio` to 0.4.0 +- Update to rp2040-hal 0.6.0 + +### Removed + +- Unused dependencies ## 0.4.0 - 2022-06-13 diff --git a/boards/rp-pico/Cargo.toml b/boards/rp-pico/Cargo.toml index f832aa9..750fd4e 100644 --- a/boards/rp-pico/Cargo.toml +++ b/boards/rp-pico/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rp-pico" -version = "0.4.1" +version = "0.5.0" authors = ["evan ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/rp-pico" @@ -13,14 +13,14 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" rp2040-boot2 = { version = "0.2.0", optional = true } -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } fugit = "0.3.5" usb-device= "0.2.9" futures = { version = "0.3", default-features = false, optional = true } [dev-dependencies] -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0", features = [ "defmt" ] } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0", features = [ "defmt" ] } panic-halt= "0.2.0" embedded-hal ="0.2.5" cortex-m-rtic = "1.1.2" diff --git a/boards/seeeduino-xiao-rp2040/CHANGELOG.md b/boards/seeeduino-xiao-rp2040/CHANGELOG.md index 889dc1e..36a2cbf 100644 --- a/boards/seeeduino-xiao-rp2040/CHANGELOG.md +++ b/boards/seeeduino-xiao-rp2040/CHANGELOG.md @@ -7,13 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Added - -- None +## 0.2.0 - 2022-08-26 ### Changed - Migrate from `embedded-time` to `fugit` +- Update to rp2040-hal 0.6.0 ## 0.1.0 - 2022-06-26 diff --git a/boards/seeeduino-xiao-rp2040/Cargo.toml b/boards/seeeduino-xiao-rp2040/Cargo.toml index c07d509..4c7356c 100644 --- a/boards/seeeduino-xiao-rp2040/Cargo.toml +++ b/boards/seeeduino-xiao-rp2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "seeeduino-xiao-rp2040" -version = "0.1.0" +version = "0.2.0" authors = ["Philip L. McMahon ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/seeeduino-xiao-rp02040" @@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } rp2040-boot2 = { version = "0.2.0", optional = true } diff --git a/boards/solderparty-rp2040-stamp/CHANGELOG.md b/boards/solderparty-rp2040-stamp/CHANGELOG.md index c2f6e70..c468f00 100644 --- a/boards/solderparty-rp2040-stamp/CHANGELOG.md +++ b/boards/solderparty-rp2040-stamp/CHANGELOG.md @@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.3.0 - 2022-08-26 + ### Changed - Migrate from `embedded-time` to `fugit` - Bump `pio` to 0.2.0 - Bump `ws2812-pio` to 0.4.0 +- Update to rp2040-hal 0.6.0 diff --git a/boards/solderparty-rp2040-stamp/Cargo.toml b/boards/solderparty-rp2040-stamp/Cargo.toml index 70ac247..ab7ac5b 100644 --- a/boards/solderparty-rp2040-stamp/Cargo.toml +++ b/boards/solderparty-rp2040-stamp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "solderparty-rp2040-stamp" -version = "0.2.1" +version = "0.3.0" authors = ["The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/solderparty-rp2040-stamp" @@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" rp2040-boot2 = { version = "0.2.0", optional = true } -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } [features] diff --git a/boards/sparkfun-pro-micro-rp2040/CHANGELOG.md b/boards/sparkfun-pro-micro-rp2040/CHANGELOG.md index 3b0c4be..77955be 100644 --- a/boards/sparkfun-pro-micro-rp2040/CHANGELOG.md +++ b/boards/sparkfun-pro-micro-rp2040/CHANGELOG.md @@ -7,15 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Added - -- None +## 0.4.0 - 2022-08-26 ### Changed - Migrate from `embedded-time` to `fugit` - Bump `pio` to 0.2.0 - Bump `ws2812-pio` to 0.4.0 +- Update to rp2040-hal 0.6.0 ## 0.3.0 - 2022-06-13 diff --git a/boards/sparkfun-pro-micro-rp2040/Cargo.toml b/boards/sparkfun-pro-micro-rp2040/Cargo.toml index 6f7dd09..d7b155e 100644 --- a/boards/sparkfun-pro-micro-rp2040/Cargo.toml +++ b/boards/sparkfun-pro-micro-rp2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sparkfun-pro-micro-rp2040" -version = "0.3.1" +version = "0.4.0" authors = ["Wilfried Chauveau ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/sparkfun-pro-micro-rp2040" @@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7.0", optional = true } embedded-hal = { version = "0.2.4", features = ["unproven"] } rp2040-boot2 = { version = "0.2.0", optional = true } diff --git a/boards/sparkfun-thing-plus-rp2040/CHANGELOG.md b/boards/sparkfun-thing-plus-rp2040/CHANGELOG.md index fd4437a..18955f0 100644 --- a/boards/sparkfun-thing-plus-rp2040/CHANGELOG.md +++ b/boards/sparkfun-thing-plus-rp2040/CHANGELOG.md @@ -7,9 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Added - -- None +## 0.3.0 - 2022-08-26 ### Changed @@ -17,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Migrate from `embedded-time` to `fugit` - Bump `pio` to 0.2.0 - Bump `ws2812-pio` to 0.4.0 +- Update to rp2040-hal 0.6.0 ## 0.2.0 - 2022-06-13 diff --git a/boards/sparkfun-thing-plus-rp2040/Cargo.toml b/boards/sparkfun-thing-plus-rp2040/Cargo.toml index ba00e70..9c71c5d 100644 --- a/boards/sparkfun-thing-plus-rp2040/Cargo.toml +++ b/boards/sparkfun-thing-plus-rp2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sparkfun-thing-plus-rp2040" -version = "0.2.1" +version = "0.3.0" authors = ["Tyler Pottenger ", "Wilfried Chauveau ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/sparkfun-thing-plus-rp2040" @@ -12,7 +12,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7.0", optional = true } embedded-hal = { version = "0.2.4", features = ["unproven"] } rp2040-boot2 = { version = "0.2.0", optional = true } diff --git a/boards/vcc-gnd-yd-rp2040/CHANGELOG.md b/boards/vcc-gnd-yd-rp2040/CHANGELOG.md index c44306b..1da6b20 100644 --- a/boards/vcc-gnd-yd-rp2040/CHANGELOG.md +++ b/boards/vcc-gnd-yd-rp2040/CHANGELOG.md @@ -7,15 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -### Added - -- None +## 0.2.0 - 2022-08-26 ### Changed - Migrate from `embedded-time` to `fugit` - Bump `ws2812-pio` to 0.4.0 - Bump `i2c-pio` to 0.4.0 +- Update to rp2040-hal 0.6.0 + +### Removed + +- Unused dependencies ## 0.1.0 - 2022-07-17 diff --git a/boards/vcc-gnd-yd-rp2040/Cargo.toml b/boards/vcc-gnd-yd-rp2040/Cargo.toml index 0a505ba..567cb3c 100644 --- a/boards/vcc-gnd-yd-rp2040/Cargo.toml +++ b/boards/vcc-gnd-yd-rp2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vcc-gnd-yd-rp2040" -version = "0.1.0" +version = "0.2.0" authors = ["Nicolas ", "The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/vcc-gnd-yd-rp2040" @@ -13,7 +13,7 @@ repository = "https://github.com/rp-rs/rp-hal.git" [dependencies] cortex-m = "0.7.2" rp2040-boot2 = { version = "0.2.0", optional = true } -rp2040-hal = { path = "../../rp2040-hal", version = "0.5.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" } cortex-m-rt = { version = "0.7", optional = true } fugit = "0.3.5" usb-device= "0.2.9" diff --git a/rp2040-hal/CHANGELOG.md b/rp2040-hal/CHANGELOG.md index e46adf3..045c885 100644 --- a/rp2040-hal/CHANGELOG.md +++ b/rp2040-hal/CHANGELOG.md @@ -7,21 +7,45 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0] - 2022-08-26 + ### Added -- `rp2040-e5` feature enabling the workaround for errata 5 on the USB device peripheral. +- Documentation Example for the bsp_pin! macro - @ hmvp +- Timer: Documentation & doc examples for Timers - @9names +- Add suspend, resume and remote wakeup support. - @ithinuel & @jannic +- `rp2040-e5` feature enabling the workaround for errata 5 on the USB device peripheral. - @ithinuel +- NonPwmPinMode for gpio::Disabled - @FlorianUekermann +- RAM-based interrupt vector tables - @9names - Support for critical-section 1.0.0. Critical-section 0.2 is still supported (ie. a custom-impl is provided, compatible with the 1.0.0 implementation), to avoid a breaking change. It will be removed - later. + later. - @jannic +- Add support for the Interpolator. @fenax ### Changed -- Update embedded-hal alpha support to version 1.0.0-alpha.8 +- Update dev dependencies on cortex-m-rtic to 1.1.2 - @jannic +- Use correct interrupt names in `timer::alarms` - @hmvp +- Update embedded-hal alpha support to version 1.0.0-alpha.8 - @jannic +- Fix PIO rx fifo status - @jannic - Implement `From<&SomeClock> for Hertz` instead of `From for Hertz` - for the clocks in `rp2040_hal::clocks`. -- Use `rp2040-hal`'s entry function. -- Migrate from `embedded-time` to `fugit` + for the clocks in `rp2040_hal::clocks`. - @jannic +- Fix i2c example using the wrong clock. - @jannic +- Fix duty cycle handing on disabled pwm channels. - @jannic +- GPIO IRQ example: add check for interrupt source - @9names +- Align USB synchronisation requirements with the manual & pico-sdk - @ithinuel +- Update dependencies on usb-device to 0.2.9 - @ithinuel +- Use wfi in otherwise empty infinite loops in examples. - @jannic +- Use generic bootloader in examples - @jannic +- Use `rp2040-hal`'s entry function. - @ithinuel +- Migrate from `embedded-time` to `fugit` - @ithinuel +- Fix PIO's `set_pins` and `set_pindirs` when `out_sticky` is set. - @jannic & @ithinuel + +### Removed + +- Unnecessary cortex_m::interrupt::free in timer.rs - @jannic +- Unused embassy-traits deps - @9names ## [0.5.0] - 2022-06-13 diff --git a/rp2040-hal/Cargo.toml b/rp2040-hal/Cargo.toml index 60dc621..ab5945e 100644 --- a/rp2040-hal/Cargo.toml +++ b/rp2040-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rp2040-hal" -version = "0.5.0" +version = "0.6.0" authors = ["The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal"