fix for HC detection - #305

This commit is contained in:
Paul
2020-02-01 09:07:09 +01:00
parent 9b3ca30959
commit f969226b05
2 changed files with 4 additions and 1 deletions

View File

@@ -1432,9 +1432,12 @@ void _process_RC30Set(_EMS_RxTelegram * EMS_RxTelegram) {
int8_t _getHeatingCircuit(_EMS_RxTelegram * EMS_RxTelegram) {
// check to see we have an active HC. Assuming first byte must have some bit status set.
// see https://github.com/proddy/EMS-ESP/issues/238
// and reverting on 1/2/2020 with https://github.com/proddy/EMS-ESP/issues/305#issuecomment-581006130
/*
if (EMS_RxTelegram->data[0] == 0x00) {
return -1;
}
*/
// ignore telegrams that have no data, or only a single byte
if (EMS_RxTelegram->data_length <= 1) {

View File

@@ -1 +1 @@
#define APP_VERSION "1.9.5b23"
#define APP_VERSION "1.9.5b24"