From 9a5ad149f81ff435580d24c15adef1a6c78132e7 Mon Sep 17 00:00:00 2001 From: Mathias Rasmussen Date: Thu, 6 May 2021 21:18:48 +0200 Subject: [PATCH] chore(release): 0.13 --- Bluejay.asm | 2 +- CHANGELOG.md | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Bluejay.asm b/Bluejay.asm index 9ae861d..bb3c86b 100644 --- a/Bluejay.asm +++ b/Bluejay.asm @@ -317,7 +317,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 12 ; Sub revision of the firmware +EEPROM_FW_SUB_REVISION EQU 13 ; Sub revision of the firmware EEPROM_LAYOUT_REVISION EQU 203 ; 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 e469946..595bdc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. +## [0.13](https://github.com/mathiasvr/bluejay/compare/v0.12...v0.13) (2021-05-06) + +### Features + +* Send telemetry for each DShot packet when off ([90ae235](https://github.com/mathiasvr/bluejay/commit/90ae235481fca247dcc4291d6199f7e7a7ddc871)) + +### Bug Fixes + +* Check RCP timeout in DShot command loop ([ecb70ea](https://github.com/mathiasvr/bluejay/commit/ecb70ea8840ca888d7bcf9d7f88648827c93b735)) +* Clear DShot command when RCP is zero ([be52fa6](https://github.com/mathiasvr/bluejay/commit/be52fa64692d779a7697a71880abe179e9ac57b5)) +* Switch power off earlier during signal detection ([78de110](https://github.com/mathiasvr/bluejay/commit/78de110ea93fd3c70a01fafe58b3279dc1236e95)) + + ## [0.12](https://github.com/mathiasvr/bluejay/compare/v0.11...v0.12) (2021-04-13) ### Features