IBACnetPersistence (ITF) ¶ INTERFACE IBACnetPersistence Interface for BACnet persistence implementations. Properties: Name RestoreClientCreatedObjects Methods: DumpDataBase FreePersistenceInfos FreeUpdatePropertiesBuffer GetPersistenceInfos UpdateProperties Structure: DumpDataBase (Method) FreePersistenceInfos (Method) FreeUpdatePropertiesBuffer (Method) GetPersistenceInfos (Method) Name (Property) RestoreClientCreatedObjects (Property) UpdateProperties (Method)
IBACnetPersistence.DumpDataBase (METH) ¶ METHOD DumpDataBase : CmpBACnet.IEC_BACNET_STATUS Dumps the object database to persistent storage. InOut: Scope Name Type Return DumpDataBase CmpBACnet.IEC_BACNET_STATUS
Structs ¶ Structures representing accumulated BACnet data types in form of accumulated IEC data types. BACnetDateRange (Struct) BACnetDateTime (Struct) BACnetDevObjPropReference (Struct) BACnetPropertyAttributes (Struct) BACnetSetpointReference (Struct) BACnetTimeStamp (Struct) BACnetTimeStampUnion (Union) BBMD_Info (Struct)
BACnetDateRange (STRUCT) ¶ TYPE BACnetDateRange : STRUCT Helper Structure for CODESYS-Typed date ranges. InOut: Name Type startDate DATE endDate DATE
PropertyConfiguration ¶ IBACnetPropertyConfiguration (Interface) GetPropertyAttributes (Method) Name (Property)
IBACnetPropertyConfiguration (ITF) ¶ INTERFACE IBACnetPropertyConfiguration Interface for BACnet property configuration (plugin) implementations. Properties: Name Methods: GetPropertyAttributes Structure: GetPropertyAttributes (Method) Name (Property)
BBMD_Info (STRUCT) ¶ TYPE BBMD_Info : STRUCT BBMD BDT entry InOut: Name Type Initial addr ARRAY [0..3] OF BYTE [0, 0, 0, 0] port WORD 47808
Utilities ¶ Utility functionalities for dealing with the BACnet object, their properties and some general issues like string conversion to different string representations. BACnetUtilities BACnetDateTimeCmp (Function) BACnetProperties GetBACnetDataTypeSize (Function) GetBACnetPropertyDataType (Function) InitializeEmptyPropertyInstance (Function) InitializePropertyInstance (Function) IsBACnetObjectAMEVCreatable (Function) IsBACnetPropertyAMEVASBWritable (Function) SetPropertyAgain (Function) FromBACnetContents GetBitStringFromContents (Function) GetBoolFromContents (Function) GetDateFromContents (Function) GetDateRangeFromContents (Function) GetDateTimeFromContents (Function) GetDevObjPropReferenceFromContents (Function) GetLrealFromContents (Function) GetObjectIDFromContents (Function) GetRealFromContents (Function) GetSetpointReferenceFromContents (Function) GetSignedFromContents (Function) GetTimeFromContents (Function) GetUnsignedFromContents (Function) GetWStringFromContents (Function) FromBACnetDataTypes FromBACnetBitString (Function) FromBACnetBoolean (Function) FromBACnetDate (Function) FromBACnetDateRange (Function) FromBACnetDateTime (Function) FromBACnetDevObjPropReference (Function) FromBACnetSetpointReference (Function) FromBACnetString (Function) FromBACnetTime (Function) FromBACnetTimeStamp (Function) IsBACnetBACnetDateTimeUnspecified (Function) IsBACnetDateTimeUnspecified (Function) InitializeBACnetDataTypes BitStrings BACnetBitStringGetBit (Function) BACnetBitStringSetBit (Function) InitializeBACnetBitString (Function) InitializeBACnetBoolean (Function) InitializeBACnetDate (Function) InitializeBACnetDateRange (Function) InitializeBACnetDateTime (Function) InitializeBACnetDateTimeUnspecified (Function) InitializeBACnetDevObjPropReference (Function) InitializeBACnetSetpointReference (Function) InitializeBACnetString (Function) InitializeBACnetTime (Function) InitializeBACnetTimeStamp (Function) IOUtilities Mem DeallocStackAllocatedContentBuffer (Function) FreeStackAllocatedMemory (Function) RegisterEventUtilities StringConversions BufferToString (Function) ISO88591 UTF8 ToString BACnetDateTimeToString (Function) EventIdToString (Function) IEC_BACNET_ERROR_TO_STRING (Function) MemoryToString (Function) PropertyAddrString (Function) PropertyAttributeExistenceString (Function) PropertyAttributePersistentString (Function) PropertyAttributeWritableString (Function) PropertyAttributesString (Function) PropertyIndexAddrString (Function)
InitializeEmptyPropertyInstance (FUN) ¶ FUNCTION InitializeEmptyPropertyInstance : BOOL Initializes a property (prop) with its (working) defaults (mostly empty) considering constant array sizes, lists and special property types. InOut: Scope Name Type Comment Return InitializeEmptyPropertyInstance BOOL Input objTyp CmpBACnet.IEC_BACNET_OBJECT_TYPE The object instance which has the desired property. accessID CmpBACnet.IEC_BACNET_ACCESS The access specifier used for initializing the property instance. propID CmpBACnet.IEC_BACNET_PROPERTY_ID The property ID of the property for which the instance data shall be initialized. Inout prop CmpBACnet.IEC_BACNET_PROPERTY_INSTANCE
InitializePropertyInstance (FUN) ¶ FUNCTION InitializePropertyInstance : BOOL Initializes a IEC_BACNET_PROPERTY_INSTANCE with the given parameters and data. InOut: Scope Name Type Comment Return InitializePropertyInstance BOOL Input ePropAccess CmpBACnet.IEC_BACNET_ACCESS The access specifier to use for initialization. ePropID CmpBACnet.IEC_BACNET_PROPERTY_ID The property ID to use for initialization. ePropDataType CmpBACnet.IEC_BACNET_DATA_TYPE The data type to use for initialization. uiNumOfElements UDINT The number of elements to use for initialization. uiDataSize UDINT The data size to use for initialization. pData POINTER TO BYTE The data to use for initialization. Inout propInst CmpBACnet.IEC_BACNET_PROPERTY_INSTANCE After a successfull call the initialized property instance data is written to thuis structure.