diff --git a/Bluejay.asm b/Bluejay.asm index 80839a0..f1c60c8 100644 --- a/Bluejay.asm +++ b/Bluejay.asm @@ -309,7 +309,7 @@ Temp_Storage: DS 48 ; Temporary storage ; A segment of the flash is used as "EEPROM", which is not available in SiLabs MCUs CSEG AT 1A00h EEPROM_FW_MAIN_REVISION EQU 0 ; Main revision of the firmware -EEPROM_FW_SUB_REVISION EQU 7 ; Sub revision of the firmware +EEPROM_FW_SUB_REVISION EQU 8 ; Sub revision of the firmware EEPROM_LAYOUT_REVISION EQU 33 ; Revision of the EEPROM layout Eep_FW_Main_Revision: DB EEPROM_FW_MAIN_REVISION ; EEPROM firmware main revision number diff --git a/CHANGELOG.md b/CHANGELOG.md index 9649329..f5baff5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [0.8](https://github.com/mathiasvr/bluejay/compare/v0.7...v0.8) (2021-01-21) + +### Features + +* Add DShot150 support on 24MHz MCUs ([f16cd2c](https://github.com/mathiasvr/bluejay/commit/f16cd2c4da336f40c923c4bdb81b881551ea168d)) + +### Bug Fixes + +* Fix bug in comparator routine ([32ae3df](https://github.com/mathiasvr/bluejay/commit/32ae3dfbfb9db8872762defc18a1dee5d630eb86)) + +### Performance Improvements + +* Optimize comparator wait routine on 48MHz ([661be1b](https://github.com/mathiasvr/bluejay/commit/661be1b9540a6129275975b2a356926fe4251254)) + + ## [0.7](https://github.com/mathiasvr/bluejay/compare/v0.6...v0.7) (2021-01-16) ### Features diff --git a/Makefile b/Makefile index fd971b6..3c4ecf6 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # set current revision -REVISION ?= v0.7 +REVISION ?= v0.8 # targets TARGETS = A B C D E F G H I J K L M N O P Q R S T U V W