Updated port for BACnet Development Kit.
This commit is contained in:
@@ -644,7 +644,8 @@ typedef enum {
|
||||
|
||||
typedef enum {
|
||||
POLARITY_NORMAL = 0,
|
||||
POLARITY_REVERSE = 1
|
||||
POLARITY_REVERSE = 1,
|
||||
MAX_POLARITY = 2
|
||||
} BACNET_POLARITY;
|
||||
|
||||
typedef enum {
|
||||
@@ -932,7 +933,8 @@ typedef enum {
|
||||
CHARACTER_JISC_6226 = 2,
|
||||
CHARACTER_UCS4 = 3,
|
||||
CHARACTER_UCS2 = 4,
|
||||
CHARACTER_ISO8859 = 5
|
||||
CHARACTER_ISO8859 = 5,
|
||||
MAX_CHARACTER_STRING_ENCODING = 6
|
||||
} BACNET_CHARACTER_STRING_ENCODING;
|
||||
|
||||
typedef enum {
|
||||
|
||||
@@ -82,4 +82,8 @@
|
||||
#define BITMASK_FLIP(x,y) ((x) ^= (y))
|
||||
#define BITMASK_CHECK(x,y) ((x) & (y))
|
||||
|
||||
#ifndef _BV
|
||||
#define _BV(x) (1<<(x))
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
@@ -35,6 +35,8 @@
|
||||
extern "C" {
|
||||
#endif /* __cplusplus */
|
||||
|
||||
void Binary_Output_Init(void);
|
||||
|
||||
void Binary_Output_Property_Lists(
|
||||
const int **pRequired,
|
||||
const int **pOptional,
|
||||
|
||||
@@ -44,6 +44,9 @@
|
||||
extern "C" {
|
||||
#endif /* __cplusplus */
|
||||
|
||||
|
||||
void Device_Init(void);
|
||||
|
||||
void Device_Property_Lists(
|
||||
const int **pRequired,
|
||||
const int **pOptional,
|
||||
|
||||
Reference in New Issue
Block a user