Bugfix/ucov-timestamp-handler-and-notification (#1030)

* Added the ability for apps/ucov to send property specific application tagged data using -1 argument for tag.

* Added known property decoding in UnconfirmedCOVNotification handler.
This commit is contained in:
Steve Karg
2025-06-26 13:17:15 -05:00
committed by GitHub
parent 284a5198a5
commit def3cb14bb
5 changed files with 163 additions and 5 deletions
+2 -2
View File
@@ -264,8 +264,8 @@ int cov_notify_decode_service_request(
/* the first value includes a pointer to the next value, etc */
value = data->listOfValues;
while (value != NULL) {
value_len = bacapp_property_value_decode(
&apdu[len], apdu_size - len, value);
value_len = bacapp_object_property_value_decode(
&apdu[len], apdu_size - len, value, decoded_type);
if (value_len == BACNET_STATUS_ERROR) {
return BACNET_STATUS_ERROR;
} else {