mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2025-01-23 09:46:33 +11:00
Prepare for first release
This commit is contained in:
parent
bfe6903751
commit
d4ec87b2f7
7 changed files with 30 additions and 8 deletions
22
CHANGELOG.md
Normal file
22
CHANGELOG.md
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.2.0]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Initial version with support for Rosc, Xosc, Plls, Watchdog, Clocks, Gpio, Pwm, Adc, Spi, I2C, Resets, Uart
|
||||||
|
|
||||||
|
## [0.1.0]
|
||||||
|
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.2.0...HEAD
|
||||||
|
[0.2.0]: https://github.com/rp-rs/rp-hal/compare/v0.1.0...v0.2.0
|
||||||
|
[0.1.0]: https://github.com/rp-rs/rp-hal/releases/tag/v0.1.0
|
|
@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.7.2"
|
cortex-m = "0.7.2"
|
||||||
rp2040-hal = { path = "../../rp2040-hal", version = "0.1.0" }
|
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
|
||||||
cortex-m-rt = { version = "0.6.14", optional = true }
|
cortex-m-rt = { version = "0.6.14", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.7.2"
|
cortex-m = "0.7.2"
|
||||||
rp2040-hal = { path = "../../rp2040-hal", version = "0.1.0" }
|
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
|
||||||
cortex-m-rt = { version = "0.6.14", optional = true }
|
cortex-m-rt = { version = "0.6.14", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.7.2"
|
cortex-m = "0.7.2"
|
||||||
rp2040-hal = { path = "../../rp2040-hal", version = "0.1.0" }
|
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
|
||||||
cortex-m-rt = { version = "0.6.14", optional = true }
|
cortex-m-rt = { version = "0.6.14", optional = true }
|
||||||
embedded-time = "0.12.0"
|
embedded-time = "0.12.0"
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.7.2"
|
cortex-m = "0.7.2"
|
||||||
rp2040-hal = { path="../../rp2040-hal", version="0.1.0" }
|
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
|
||||||
cortex-m-rt = { version="0.6.14", optional=true }
|
cortex-m-rt = { version="0.6.14", 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"
|
||||||
|
|
|
@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cortex-m = "0.7.2"
|
cortex-m = "0.7.2"
|
||||||
rp2040-hal = { path = "../../rp2040-hal", version = "0.1.0" }
|
rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"}
|
||||||
cortex-m-rt = { version = "0.6.14", optional = true }
|
cortex-m-rt = { version = "0.6.14", optional = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rp2040-hal"
|
name = "rp2040-hal"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
authors = ["evan <evanmolder@gmail.com>"]
|
authors = ["evan <evanmolder@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
homepage = "https://github.com/rp-rs/rp-hal/boards/pico-bsc"
|
homepage = "https://github.com/rp-rs/rp-hal/boards/pico-bsc"
|
||||||
|
@ -14,13 +14,13 @@ cortex-m = "0.7.2"
|
||||||
embedded-hal = { version = "0.2.5", features=["unproven"] }
|
embedded-hal = { version = "0.2.5", features=["unproven"] }
|
||||||
embedded-time = "0.12.0"
|
embedded-time = "0.12.0"
|
||||||
nb = "1.0"
|
nb = "1.0"
|
||||||
rp2040-pac = { git = "https://github.com/rp-rs/rp2040-pac", branch="main" }
|
rp2040-pac = "0.1.4"
|
||||||
paste = "1.0"
|
paste = "1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cortex-m-rt = "0.6.14"
|
cortex-m-rt = "0.6.14"
|
||||||
panic-halt = "0.2.0"
|
panic-halt = "0.2.0"
|
||||||
rp2040-boot2 = { git = "https://github.com/rp-rs/rp2040-boot2-rs", branch="main" }
|
rp2040-boot2 = { git = "https://github.com/rp-rs/rp2040-boot2-rs", rev = "67400f600b192e950b58df79ddc9b57ff209ef08" }
|
||||||
hd44780-driver = "0.4.0"
|
hd44780-driver = "0.4.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
Loading…
Add table
Reference in a new issue