8b8ef8f338
* Fix some ztests that were skipped * Expose bacapp_same_value() * Fix bacapp, ptransfer tests * Fix bugs in Load_Control object & tests * refactor days functions from datetime module * fix legacy ctests * Add bacnet/basic/sys/days.[ch] to Zephyr build * Update ztest to match from Zephyr v2.6.0; update ringbuf, datetime to build * Fixup ztest test for object/acc * Fix bvlc_address_from_ascii; enable/fix bvlc test * Comment cleanup * test/bacnet/basic/object/lc partially enabled * Fix bacapp_decode_data_len return status on erroneous input * fix ztest include fatal error * fix ztest strsignal reference fatal error * fix zassert_mem_equal reference syntax error * fix zassert_mem_equal reference syntax error Co-authored-by: Gregory Shue <gregory.shue@legrand.us> Co-authored-by: Steve Karg <skarg@users.sourceforge.net>
90 lines
3.0 KiB
C
90 lines
3.0 KiB
C
/**************************************************************************
|
|
*
|
|
* Copyright (C) 2012 Steve Karg <skarg@users.sourceforge.net>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*********************************************************************/
|
|
#ifndef BACNET_OBJECTS_H
|
|
#define BACNET_OBJECTS_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include "bacnet/bacnet_stack_exports.h"
|
|
#include "bacnet/bacdef.h"
|
|
#include "bacnet/bacstr.h"
|
|
#include "bacnet/bacenum.h"
|
|
|
|
typedef struct object_device_t {
|
|
BACNET_OBJECT_ID Object_Identifier;
|
|
BACNET_CHARACTER_STRING Object_Name;
|
|
BACNET_OBJECT_TYPE Object_Type;
|
|
BACNET_DEVICE_STATUS System_Status;
|
|
BACNET_CHARACTER_STRING Vendor_Name;
|
|
uint16_t Vendor_Identifier;
|
|
BACNET_CHARACTER_STRING Model_Name;
|
|
BACNET_CHARACTER_STRING Firmware_Revision;
|
|
BACNET_CHARACTER_STRING Application_Software_Version;
|
|
BACNET_CHARACTER_STRING Location;
|
|
BACNET_CHARACTER_STRING Description;
|
|
uint8_t Protocol_Version;
|
|
uint8_t Protocol_Revision;
|
|
BACNET_BIT_STRING Protocol_Services_Supported;
|
|
BACNET_BIT_STRING Protocol_Object_Types_Supported;
|
|
OS_Keylist Object_List;
|
|
uint32_t Max_APDU_Length_Accepted;
|
|
BACNET_SEGMENTATION Segmentation_Supported;
|
|
uint32_t APDU_Timeout;
|
|
uint8_t Number_Of_APDU_Retries;
|
|
uint32_t Database_Revision;
|
|
} OBJECT_DEVICE_T;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
BACNET_STACK_EXPORT
|
|
bool objects_device_delete(int index);
|
|
|
|
BACNET_STACK_EXPORT
|
|
OBJECT_DEVICE_T *objects_device_new(uint32_t device_instance);
|
|
|
|
BACNET_STACK_EXPORT
|
|
OBJECT_DEVICE_T *objects_device_by_instance(uint32_t device_instance);
|
|
|
|
BACNET_STACK_EXPORT
|
|
OBJECT_DEVICE_T *objects_device_data(int index);
|
|
|
|
BACNET_STACK_EXPORT
|
|
int objects_device_count(void);
|
|
|
|
BACNET_STACK_EXPORT
|
|
uint32_t objects_device_id(int index);
|
|
|
|
BACNET_STACK_EXPORT
|
|
void objects_init(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|
|
|