Fixed load control object and unit test. Added recipe to Makefile for Zephyr OS twister unit testing. (#710)
This commit is contained in:
@@ -47,6 +47,16 @@ typedef struct BACnetScale {
|
||||
} type;
|
||||
} BACNET_SCALE;
|
||||
|
||||
/* The shed levels for the LEVEL choice of BACnetShedLevel. */
|
||||
typedef struct {
|
||||
BACNET_SHED_LEVEL_TYPE type;
|
||||
union {
|
||||
BACNET_UNSIGNED_INTEGER level;
|
||||
BACNET_UNSIGNED_INTEGER percent;
|
||||
float amount;
|
||||
} value;
|
||||
} BACNET_SHED_LEVEL;
|
||||
|
||||
struct BACnet_Application_Data_Value;
|
||||
typedef struct BACnet_Application_Data_Value {
|
||||
bool context_specific; /* true if context specific data */
|
||||
@@ -146,6 +156,9 @@ typedef struct BACnet_Application_Data_Value {
|
||||
#endif
|
||||
#if defined (BACAPP_SCALE)
|
||||
BACNET_SCALE Scale;
|
||||
#endif
|
||||
#if defined(BACAPP_SHED_LEVEL)
|
||||
BACNET_SHED_LEVEL Shed_Level;
|
||||
#endif
|
||||
} type;
|
||||
/* simple linked list if needed */
|
||||
|
||||
Reference in New Issue
Block a user