2021-11-06 01:13:48 +01:00
|
|
|
Change Log
|
|
|
|
=======
|
|
|
|
|
|
|
|
All notable changes to this project will be documented in this file.
|
|
|
|
|
|
|
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
|
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
|
|
2021-12-09 23:19:21 +01:00
|
|
|
## [unreleased]
|
|
|
|
|
2021-12-18 14:34:37 +01:00
|
|
|
## [v0.4.3]
|
|
|
|
|
|
|
|
- Various smaller fixes for READMEs, update of links in documentation
|
|
|
|
- Simplified CI for github, do not use `cross`
|
|
|
|
- New `blinky-pac` example
|
|
|
|
- Use HAL delay in `blinky` example
|
|
|
|
|
2021-12-12 14:35:15 +01:00
|
|
|
## [v0.4.2]
|
|
|
|
|
|
|
|
### Added
|
|
|
|
|
|
|
|
- `port_mux` function to set pin function select manually
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
|
|
|
- Clear TX and RX FIFO in SPI transfer function
|
|
|
|
|
2021-12-11 17:46:05 +01:00
|
|
|
## [v0.4.1]
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
|
|
|
- Initial blockmode setting was not set in SPI constructor
|
|
|
|
|
2021-12-09 23:19:21 +01:00
|
|
|
## [v0.4.0]
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
|
|
|
- Replaced `Hertz` by `impl Into<Hertz>` completely and removed
|
|
|
|
`+ Copy` where not necessary
|
|
|
|
|
2021-12-06 16:04:55 +01:00
|
|
|
## [v0.3.1]
|
|
|
|
|
|
|
|
- Updated all links to point to new repository
|
2021-12-06 01:55:00 +01:00
|
|
|
|
2021-12-06 15:46:35 +01:00
|
|
|
## [v0.3.0]
|
|
|
|
|
2021-12-06 01:55:00 +01:00
|
|
|
### Added
|
|
|
|
|
|
|
|
- TIM Cascade example
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
|
|
|
- `CountDownTimer` new function now expects an `impl Into<Hertz>` instead of `Hertz`
|
2021-12-06 15:46:35 +01:00
|
|
|
- Primary repository now hosted on IRS external git: https://egit.irs.uni-stuttgart.de/rust/va108xx-hal
|
|
|
|
- Relicensed as Apache-2.0
|
2021-12-06 01:55:00 +01:00
|
|
|
|
2021-12-05 22:57:54 +01:00
|
|
|
## [0.2.3]
|
2021-11-06 01:13:48 +01:00
|
|
|
|
2021-12-04 21:54:22 +01:00
|
|
|
### Added
|
|
|
|
|
|
|
|
- Basic API for EDAC functionality
|
2021-12-05 17:28:30 +01:00
|
|
|
- PWM implementation and example
|
2021-12-05 22:59:57 +01:00
|
|
|
- API to perform peripheral resets
|
2021-12-04 21:54:22 +01:00
|
|
|
|
2021-12-05 22:57:54 +01:00
|
|
|
### Changed
|
|
|
|
|
|
|
|
- Improved Timer API. It is now possible to simply use `new` on `CountDownTimer`
|
|
|
|
|
2021-12-02 12:03:46 +01:00
|
|
|
## [0.2.2]
|
|
|
|
|
2021-11-17 10:34:55 +01:00
|
|
|
### Added
|
|
|
|
|
|
|
|
- DelayUs and DelayMs trait implementations for timer
|
2021-11-21 00:20:35 +01:00
|
|
|
- SPI implementation for blocking API, supports blockmode as well
|
2021-12-02 12:03:46 +01:00
|
|
|
- Basic I2C implementation for blocking API
|
2021-11-17 10:34:55 +01:00
|
|
|
|
2021-11-21 20:14:56 +01:00
|
|
|
### Changed
|
|
|
|
|
|
|
|
- API which expects values in Hertz now uses `impl Into<Hertz>` as input parameter
|
|
|
|
|
2021-11-13 14:43:21 +01:00
|
|
|
## [0.2.1]
|
|
|
|
|
|
|
|
### Added
|
|
|
|
|
|
|
|
- Adds the IRQ interface to configure interrupts on output and input pins
|
|
|
|
- Utility function to set up millisecond timer with `TIM0`
|
|
|
|
- Function to set clock divisor registers in `clock` module
|
|
|
|
|
2021-11-11 18:23:54 +01:00
|
|
|
### Changed
|
|
|
|
|
|
|
|
- Minor optimizations and tweaks for GPIO module
|
2021-11-13 14:43:21 +01:00
|
|
|
- Moved the `FilterClkSel` struct to the `clock` module, re-exporting in `gpio`
|
|
|
|
- Clearing output state at initialization of Output pins
|
2021-11-09 18:30:46 +01:00
|
|
|
|
|
|
|
## [0.2.0]
|
|
|
|
|
2021-11-11 17:20:19 +01:00
|
|
|
### Changed
|
|
|
|
|
|
|
|
- New GPIO implementation which uses type-level programming. Implementation heavily based on the
|
|
|
|
ATSAMD GPIO HAL: https://docs.rs/atsamd-hal/0.13.0/atsamd_hal/gpio/v2/index.html
|
|
|
|
- Changes to API, therefore minor version bump
|
|
|
|
|
2021-11-09 18:30:46 +01:00
|
|
|
### Added
|
|
|
|
|
|
|
|
- UART implementation
|
|
|
|
- UART example
|
|
|
|
- Some bugfixes for GPIO implementation
|
|
|
|
- Rust edition updated to 2021
|
|
|
|
|
2021-11-08 01:44:44 +01:00
|
|
|
## [0.1.0]
|
|
|
|
|
2021-11-08 10:03:10 +01:00
|
|
|
### Added
|
|
|
|
|
2021-11-08 01:44:44 +01:00
|
|
|
- First version of the HAL which adds the GPIO implementation and timer implementation.
|
|
|
|
- Also adds some examples and helper files to set up new binary crates
|
2021-11-08 10:03:10 +01:00
|
|
|
- RTT example application
|
2021-11-08 09:52:18 +01:00
|
|
|
- Added basic test binary in form of an example
|
2021-11-08 11:06:25 +01:00
|
|
|
- README with basic instructions how to set up own binary crate
|