2024-07-01 16:02:10 +02: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/).
|
|
|
|
|
2024-07-19 06:19:28 +02:00
|
|
|
# [unreleased]
|
2024-07-01 16:02:10 +02:00
|
|
|
|
2024-09-18 22:39:22 +02:00
|
|
|
## Changed
|
|
|
|
|
|
|
|
- Improve and fix SPI abstractions. Add new low level interface. The primary SPI constructor now
|
|
|
|
only expects a configuration structure and the transfer configuration needs to be applied in a
|
|
|
|
separate step.
|
|
|
|
|
|
|
|
## Fixed
|
|
|
|
|
|
|
|
- Fixes for SPI peripheral: Flush implementation was incorrect and should now flush properly.
|
|
|
|
- Fixes for SPI example
|
|
|
|
- Fixes for RTIC example
|
|
|
|
|
2024-09-18 12:01:27 +02:00
|
|
|
# [v0.2.0] 2024-09-18
|
2024-07-01 16:02:10 +02:00
|
|
|
|
|
|
|
- Documentation improvements
|
2024-07-19 06:19:28 +02:00
|
|
|
- Improved UART typing support: Validity of passed pins is now checked properly
|
|
|
|
|
|
|
|
## Changed
|
|
|
|
|
|
|
|
- Added `va41620`, `va41630`, `va41628` and `va41629` device features. A device now has to be
|
|
|
|
selected for HAL compilation to work properly
|
2024-09-13 18:09:29 +02:00
|
|
|
- Adaptions for the UART IRQ feature which are now only implemented for the RX part of the UART.
|
2024-07-19 06:19:28 +02:00
|
|
|
|
|
|
|
## Fixed
|
|
|
|
|
2024-07-01 16:02:10 +02:00
|
|
|
- Small fixes and improvements for ADC drivers
|
2024-09-11 20:44:10 +02:00
|
|
|
- Fixes for the SPI implementation where the clock divider values were not calculated
|
|
|
|
correctly
|
2024-09-13 18:09:29 +02:00
|
|
|
- Fixes for UART IRQ handler implementation
|
2024-09-17 18:07:45 +02:00
|
|
|
- Add new IRQ router initialization method `irq_router::enable_and_init_irq_router`. This method
|
|
|
|
also sets the initial values of some registers to 0 where the datasheet and the actual reset
|
|
|
|
value are inconsistent, which can lead to weird bugs like IRQs not being triggered properly.
|
2024-07-19 06:19:28 +02:00
|
|
|
|
|
|
|
## Added
|
|
|
|
|
2024-07-03 22:52:07 +02:00
|
|
|
- Added basic DMA driver
|
2024-09-11 20:44:10 +02:00
|
|
|
- Added basic EDAC module
|
|
|
|
- Added bootloader and flashloader example application
|
|
|
|
- Added NVM module which exposes a simple API to write to the NVM memory used for the boot process
|
2024-07-01 16:02:10 +02:00
|
|
|
|
2024-07-19 06:19:28 +02:00
|
|
|
# [v0.1.0] 2024-07-01
|
2024-07-01 16:02:10 +02:00
|
|
|
|
|
|
|
- Initial release with basic HAL drivers
|