Fixed WPM workaround for BTL Specified Test 9.23.2.X5 by reverting. (#1140)

This commit is contained in:
Steve Karg
2025-11-12 07:45:20 -06:00
committed by GitHub
parent 979ff0ead9
commit 86e4405c71
2 changed files with 3 additions and 11 deletions
+3 -2
View File
@@ -146,8 +146,9 @@ The git repositories are hosted at the following sites:
### Fixed
* Added CHANNEL_VALUE_ALL define and fixed the API integration for the
additional datatypes now supported in the Channel object. (#1135)
* Fixed WPM workaround for BTL Specified Test 9.23.2.X5 by reverting.(#1140)
* Fixed the API integration for the additional datatypes now supported
in the Channel object by adding CHANNEL_VALUE_ALL to enable and test. (#1135)
* Fixed the error class returned for AlarmAcknowledgment (#1131)
* Fixed object creation failure when create is called before init. (#1122)
* Fixed octetstring_copy_value() and added unit tests. (#1121)
-9
View File
@@ -77,15 +77,6 @@ static int write_property_multiple_decode(
}
if (device_write_property) {
if (device_write_property(wp_data) == false) {
/* Workaround BTL Specified Test 9.23.2.X5 */
if ((wp_data->error_class ==
ERROR_CLASS_PROPERTY) &&
(wp_data->error_code ==
ERROR_CODE_INVALID_DATA_TYPE)) {
wp_data->error_class = ERROR_CLASS_SERVICES;
wp_data->error_code =
ERROR_CODE_INVALID_TAG;
}
return BACNET_STATUS_ERROR;
}
}