merge and cleaned up warning
This commit is contained in:
@@ -36,10 +36,14 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
|
void Binary_Value_Init(
|
||||||
|
void);
|
||||||
|
|
||||||
void Binary_Value_Property_Lists(
|
void Binary_Value_Property_Lists(
|
||||||
const int **pRequired,
|
const int **pRequired,
|
||||||
const int **pOptional,
|
const int **pOptional,
|
||||||
const int **pProprietary);
|
const int **pProprietary);
|
||||||
|
|
||||||
bool Binary_Value_Valid_Instance(
|
bool Binary_Value_Valid_Instance(
|
||||||
uint32_t object_instance);
|
uint32_t object_instance);
|
||||||
unsigned Binary_Value_Count(
|
unsigned Binary_Value_Count(
|
||||||
@@ -48,13 +52,32 @@ extern "C" {
|
|||||||
unsigned index);
|
unsigned index);
|
||||||
unsigned Binary_Value_Instance_To_Index(
|
unsigned Binary_Value_Instance_To_Index(
|
||||||
uint32_t object_instance);
|
uint32_t object_instance);
|
||||||
|
bool Binary_Value_Object_Instance_Add(
|
||||||
|
uint32_t instance);
|
||||||
|
|
||||||
bool Binary_Value_Object_Name(
|
bool Binary_Value_Object_Name(
|
||||||
uint32_t object_instance,
|
uint32_t object_instance,
|
||||||
BACNET_CHARACTER_STRING * object_name);
|
BACNET_CHARACTER_STRING * object_name);
|
||||||
|
bool Binary_Value_Name_Set(
|
||||||
|
uint32_t object_instance,
|
||||||
|
char *new_name);
|
||||||
|
|
||||||
void Binary_Value_Init(
|
char *Binary_Value_Description(
|
||||||
void);
|
uint32_t instance);
|
||||||
|
bool Binary_Value_Description_Set(
|
||||||
|
uint32_t instance,
|
||||||
|
char *new_name);
|
||||||
|
|
||||||
|
char *Binary_Value_Inactive_Text(
|
||||||
|
uint32_t instance);
|
||||||
|
bool Binary_Value_Inactive_Text_Set(
|
||||||
|
uint32_t instance,
|
||||||
|
char *new_name);
|
||||||
|
char *Binary_Value_Active_Text(
|
||||||
|
uint32_t instance);
|
||||||
|
bool Binary_Value_Active_Text_Set(
|
||||||
|
uint32_t instance,
|
||||||
|
char *new_name);
|
||||||
|
|
||||||
int Binary_Value_Read_Property(
|
int Binary_Value_Read_Property(
|
||||||
BACNET_READ_PROPERTY_DATA * rpdata);
|
BACNET_READ_PROPERTY_DATA * rpdata);
|
||||||
@@ -115,3 +138,4 @@ extern "C" {
|
|||||||
}
|
}
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ A BACnet device is supposed to support, at a minimum, ReadProperty service
|
|||||||
PC that is used for reading other BACnet devices.
|
PC that is used for reading other BACnet devices.
|
||||||
|
|
||||||
There are a number of core files that you will need. Services such as
|
There are a number of core files that you will need. Services such as
|
||||||
ReadProperty, I-Am, and Reject are consided core files. After determinging
|
ReadProperty, I-Am, and Reject are consided core files. After determining
|
||||||
which services you want in your device, add files to your project or makefile
|
which services you want in your device, add files to your project or makefile
|
||||||
from the following BACnet services (messages) provided by this BACnet stack:
|
from the following BACnet services (messages) provided by this BACnet stack:
|
||||||
|
|
||||||
|
|||||||
@@ -150,7 +150,7 @@ uint32_t datetime_days_since_epoch(
|
|||||||
return days;
|
return days;
|
||||||
}
|
}
|
||||||
|
|
||||||
void days_since_epoch_into_ymd(
|
static void days_since_epoch_into_ymd(
|
||||||
uint32_t days,
|
uint32_t days,
|
||||||
uint16_t * pYear,
|
uint16_t * pYear,
|
||||||
uint8_t * pMonth,
|
uint8_t * pMonth,
|
||||||
|
|||||||
Reference in New Issue
Block a user