Added BIP_DEBUG configuration.

This commit is contained in:
skarg
2009-12-31 15:35:37 +00:00
parent 5ced5d6f1f
commit e36e38cbe6
2 changed files with 4 additions and 1 deletions
+3 -1
View File
@@ -53,8 +53,10 @@ void dlenv_init(
datalink_set(NULL);
}
#endif
#if defined(BACDL_BIP)
#if defined(BIP_DEBUG)
BIP_Debug = true;
#endif
pEnv = getenv("BACNET_IP_PORT");
if (pEnv) {
bip_set_port(strtol(pEnv, NULL, 0));
+1
View File
@@ -7,6 +7,7 @@ TARGET = bacwi
#BACDL_DEFINE = -DBACDL_ETHERNET=1
#BACDL_DEFINE = -DBACDL_ARCNET=1
#BACDL_DEFINE = -DBACDL_MSTP=1
#BACDL_DEFINE = -DBACDL_BIP=1 -DBIP_DEBUG
BACDL_DEFINE = -DBACDL_BIP=1
BACNET_DEFINES = -DBACFILE=1 -DPRINT_ENABLED=1 -DBACAPP_ALL
DEFINES = $(BACNET_DEFINES) $(BACDL_DEFINE)