This commit is contained in:
Paul
2020-01-04 15:39:07 +01:00
parent 4484c6db60
commit ae61c357c0
2 changed files with 3 additions and 2 deletions

View File

@@ -1735,7 +1735,7 @@ void _process_Version(_EMS_RxTelegram * EMS_RxTelegram) {
uint8_t i = 0; uint8_t i = 0;
uint8_t found_index = 0; uint8_t found_index = 0;
bool typeFound = false; bool typeFound = false;
while (i++ < _EMS_Devices_max) { while (i < _EMS_Devices_max) {
if (EMS_Devices[i].product_id == product_id) { if (EMS_Devices[i].product_id == product_id) {
// we have a matching product id // we have a matching product id
/* /*
@@ -1755,6 +1755,7 @@ void _process_Version(_EMS_RxTelegram * EMS_RxTelegram) {
found_index = i; found_index = i;
break; break;
} }
i++;
} }
// if not found, just add it as an unknown device and exit // if not found, just add it as an unknown device and exit

View File

@@ -1 +1 @@
#define APP_VERSION "1.9.5b12" #define APP_VERSION "1.9.5b13"