This repository has been archived on 2024-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
va108xx-hal/CHANGELOG.md
T

54 lines
1.4 KiB
Markdown
Raw Normal View History

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/).
## [unreleased]
2021-11-17 10:34:55 +01:00
### Added
- DelayUs and DelayMs trait implementations for timer
2021-11-20 23:57:08 +01:00
- SPI implementation for blocking API
2021-11-17 10:34:55 +01:00
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