Added BACnetRecipient and BACnetAddressBinding codecs for EPICS application (#1163)

* Added BACnetRecipient and BACnetAddressBinding encoding, decoding, ASCII conversion, comparison, and copy functions.

*  Added library specific string manipulation utilities including strcmp, strncmp, stptok, and snprintf with offset functions.

* Added test/README about verification and validation testing.
This commit is contained in:
Steve Karg
2025-11-27 23:12:39 -06:00
committed by GitHub
parent 21626d1ac5
commit ca9836b099
28 changed files with 1875 additions and 207 deletions
+8
View File
@@ -17,6 +17,14 @@ The git repositories are hosted at the following sites:
### Security
### Added
* Added BACnetRecipient and BACnetAddressBinding codecs for EPICS application.
The implementation includes full encode/decode, ASCII conversion,
comparison, and copy functions for both data types, along with
comprehensive test coverage and supporting string utility functions.
Integrated the new types into the application data framework with
application tag assignments. (#1163)
* Added library specific string manipulation utilities including strcmp,
strncmp, and snprintf with offset functions. (#1163)
* Added default option to bactext name functions so that NULL can be
returned when a name does not exist. (#1160)
* Added library specific ltrim, rtrim, and trim string functions. (#1159)