Browse Source

chore(release): 0.10

main
Mathias Rasmussen 4 years ago
parent
commit
34f34c6a27
  1. 2
      Bluejay.asm
  2. 12
      CHANGELOG.md
  3. 2
      Makefile

2
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

12
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

2
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

Loading…
Cancel
Save