Updated port for BACnet Development Kit.

This commit is contained in:
skarg
2009-05-11 22:32:06 +00:00
parent be4b33c099
commit 469627a6cf
28 changed files with 1758 additions and 211 deletions
+4 -2
View File
@@ -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 {
+4
View File
@@ -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
+2
View File
@@ -35,6 +35,8 @@
extern "C" {
#endif /* __cplusplus */
void Binary_Output_Init(void);
void Binary_Output_Property_Lists(
const int **pRequired,
const int **pOptional,
+3
View File
@@ -44,6 +44,9 @@
extern "C" {
#endif /* __cplusplus */
void Device_Init(void);
void Device_Property_Lists(
const int **pRequired,
const int **pOptional,