diff --git a/Bluejay.asm b/Bluejay.asm index aa9b3f4..5c3a362 100644 --- a/Bluejay.asm +++ b/Bluejay.asm @@ -313,7 +313,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 9 ; Sub revision of the firmware +EEPROM_FW_SUB_REVISION EQU 10 ; Sub revision of the firmware EEPROM_LAYOUT_REVISION EQU 201 ; 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 43a2b79..5e15cc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. +## [0.10](https://github.com/mathiasvr/bluejay/compare/v0.9...v0.10) (2021-02-10) + +### Features + +* Separate startup and rampup power settings ([ad46bab](https://github.com/mathiasvr/bluejay/commit/ad46bab50605834db0161cde13ec5202e810431f)) + +### Bug Fixes + +* DShot commands could cause invalid direction settings ([30fbf47](https://github.com/mathiasvr/bluejay/commit/30fbf477074d3283b9d1c2b04840768514c8395f)) +* Fix and optimize direction handling ([f5911b6](https://github.com/mathiasvr/bluejay/commit/f5911b673e3b1b34f227586d31985e87d502b2f7)) + + ## [0.9](https://github.com/mathiasvr/bluejay/compare/v0.8...v0.9) (2021-01-29) ### ⚠ BREAKING CHANGES diff --git a/Makefile b/Makefile index 16799f1..25aad9e 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Current version -VERSION ?= v0.9 +VERSION ?= v0.10 # Target parameters LAYOUTS = A B C D E F G H I J K L M N O P Q R S T U V W