Fixed the units to/from ASCII to function for other units properties. (#1165)
This commit is contained in:
@@ -43,6 +43,7 @@ The git repositories are hosted at the following sites:
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
* Fixed the units to/from ASCII to function for other units properties. (#1165)
|
||||||
* Fixed datetime integer overflow on 8-bit AVR compiler (#1162)
|
* Fixed datetime integer overflow on 8-bit AVR compiler (#1162)
|
||||||
* Fixed the ports/linux BACnet/IP cache netmask for accurate subnet
|
* Fixed the ports/linux BACnet/IP cache netmask for accurate subnet
|
||||||
prefix calculation implementation which had always returned 0. (#1155)
|
prefix calculation implementation which had always returned 0. (#1155)
|
||||||
|
|||||||
@@ -2386,6 +2386,12 @@ static int bacapp_snprintf_enumerated(
|
|||||||
str, str_len, "%s", bactext_event_state_name(value));
|
str, str_len, "%s", bactext_event_state_name(value));
|
||||||
break;
|
break;
|
||||||
case PROP_UNITS:
|
case PROP_UNITS:
|
||||||
|
case PROP_CONTROLLED_VARIABLE_UNITS:
|
||||||
|
case PROP_DERIVATIVE_CONSTANT_UNITS:
|
||||||
|
case PROP_INTEGRAL_CONSTANT_UNITS:
|
||||||
|
case PROP_PROPORTIONAL_CONSTANT_UNITS:
|
||||||
|
case PROP_OUTPUT_UNITS:
|
||||||
|
case PROP_CAR_LOAD_UNITS:
|
||||||
if (bactext_engineering_unit_name_proprietary((unsigned)value)) {
|
if (bactext_engineering_unit_name_proprietary((unsigned)value)) {
|
||||||
ret_val = bacapp_snprintf(
|
ret_val = bacapp_snprintf(
|
||||||
str, str_len, "proprietary-%lu", (unsigned long)value);
|
str, str_len, "proprietary-%lu", (unsigned long)value);
|
||||||
|
|||||||
@@ -3032,6 +3032,12 @@ bool bactext_object_property_strtoul(
|
|||||||
bacnet_event_state_names, search_name, found_index);
|
bacnet_event_state_names, search_name, found_index);
|
||||||
break;
|
break;
|
||||||
case PROP_UNITS:
|
case PROP_UNITS:
|
||||||
|
case PROP_CONTROLLED_VARIABLE_UNITS:
|
||||||
|
case PROP_DERIVATIVE_CONSTANT_UNITS:
|
||||||
|
case PROP_INTEGRAL_CONSTANT_UNITS:
|
||||||
|
case PROP_PROPORTIONAL_CONSTANT_UNITS:
|
||||||
|
case PROP_OUTPUT_UNITS:
|
||||||
|
case PROP_CAR_LOAD_UNITS:
|
||||||
status = bactext_string_to_uint32_index(
|
status = bactext_string_to_uint32_index(
|
||||||
bacnet_engineering_unit_names, search_name, found_index);
|
bacnet_engineering_unit_names, search_name, found_index);
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user