Converted device object test to use common read-write property test. Extended the basic BACnet device object example API. (#1106)

* Converted device object test to use common read-write property test. Extended the basic BACnet device object example API.

* Created BACnet/IP and COV test mocks to enable device object testing with less dependencies.
This commit is contained in:
Steve Karg
2025-09-24 07:09:56 -05:00
committed by GitHub
parent f877ca0ebb
commit b357bca5dd
10 changed files with 1570 additions and 361 deletions
+17
View File
@@ -0,0 +1,17 @@
/**
* @file
* @brief mock for COV functions
* @author Steve Karg
* @date September 2025
* @copyright SPDX-License-Identifier: MIT
*/
#include <zephyr/ztest.h>
#include <bacnet/bacdef.h>
#include <bacnet/basic/services.h>
int handler_cov_encode_subscriptions(uint8_t *apdu, int max_apdu)
{
(void)apdu;
(void)max_apdu;
return 0;
}