mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2024-12-23 20:51:31 +11:00
Set up for 0.3.0 release.
Somehow we already had a bunch of commits talking about 0.3.0, but it was never released. Hence why this maybe doesn't change as many version numbers as you might expect.
This commit is contained in:
parent
e6d19bc59b
commit
bebf85d4d9
|
@ -8,24 +8,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
## [Unreleased]
|
||||
|
||||
### Added
|
||||
- implement `rng_core::RngCore` for `RingOscillator`
|
||||
|
||||
- None
|
||||
|
||||
### Changed
|
||||
|
||||
- None
|
||||
|
||||
## [0.3.0] - 2021-12-19
|
||||
|
||||
### Added
|
||||
- A README!
|
||||
- Implementation of the `critical-section` API
|
||||
- DMA support
|
||||
- Embedded HAL 1.0 Alpha support
|
||||
- I²C Controller and Peripheral support
|
||||
- Multi-core support
|
||||
- PIO support
|
||||
- Implementation of `rng_core::RngCore` for `RingOscillator`
|
||||
- ADC example
|
||||
- GPIO Interrupt support
|
||||
- Multi-core FIFO example
|
||||
- PIO LED Blinky example
|
||||
- ROM Functions example
|
||||
- SPI example
|
||||
- Watchdog example
|
||||
- ADC documentation
|
||||
|
||||
### Changed
|
||||
- Modified PIO API for better ergonomics
|
||||
|
||||
## [0.3.0] - 2021-09-20
|
||||
|
||||
### Added
|
||||
- peripheral drivers: Timer(counter) with EH traits, USB, PIO
|
||||
- examples: Watchdog, GPIO, ADC, i2c, rtic blinky, usb (serial echo, mouse)
|
||||
- docs: Watchdog
|
||||
- bsps: adafruit feather
|
||||
- bsp examples: sparkfun pro micro PIO RGB rainbow LED
|
||||
|
||||
### Changed
|
||||
- i2c fixes
|
||||
- spi fixes
|
||||
- pwm fixes
|
||||
- Updated PAC to 0.2.0
|
||||
- Exported common driver structs from top-level (e.g. it's now `Sio`, not `sio::Sio`)
|
||||
|
||||
## [0.2.0] - 2021-08-14
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "rp2040-hal"
|
||||
version = "0.3.0"
|
||||
authors = ["evan <evanmolder@gmail.com>"]
|
||||
authors = ["The rp-rs Developers"]
|
||||
edition = "2018"
|
||||
homepage = "https://github.com/rp-rs/rp-hal"
|
||||
description = "A Rust Embeded-HAL impl for the rp2040 microcontroller"
|
||||
|
|
|
@ -68,7 +68,7 @@ https://github.com/rp-rs/rp-hal/ for more details.
|
|||
To include this crate in your project, amend your `Cargo.toml` file to include
|
||||
|
||||
```toml
|
||||
rp2040-hal = "0.3"
|
||||
rp2040-hal = "0.3.0"
|
||||
```
|
||||
|
||||
To obtain a copy of the source code (e.g. if you want to propose a bug-fix or
|
||||
|
|
Loading…
Reference in a new issue