20 lines
645 B
C
20 lines
645 B
C
/**
|
|
* @file
|
|
* @brief Mock for BACnet port file
|
|
* @author Steve Karg <skarg@users.sourceforge.net>
|
|
* @author Greg Shue <greg.shue@outlook.com>
|
|
* @date 2020
|
|
* @copyright SPDX-License-Identifier: MIT
|
|
*/
|
|
#ifndef BACPORT_H
|
|
#define BACPORT_H
|
|
|
|
#define BACNET_OBJECT_TABLE( \
|
|
table_name, _type, _init, _count, _index_to_instance, _valid_instance, \
|
|
_object_name, _read_property, _write_property, _RPM_list, _RR_info, \
|
|
_iterator, _value_list, _COV, _COV_clear, _intrinsic_reporting) \
|
|
while { } \
|
|
(0)
|
|
|
|
#endif
|