Added UCovNotification handler to demo server application.

This commit is contained in:
skarg
2008-11-20 16:27:40 +00:00
parent e6f683a43b
commit 6072b98f1f
5 changed files with 91 additions and 9 deletions
+5
View File
@@ -27,8 +27,12 @@ BACNET_INCLUDE = ../include
# compiler configuration
#STANDARDS = -std=c99
INCLUDES = -I$(BACNET_INCLUDE) -I$(BACNET_PORT_DIR) -I$(BACNET_OBJECT) -I$(BACNET_HANDLER)
OPTIMIZATION = -Os
DEBUGGING =
ifeq (${BUILD},debug)
OPTIMIZATION = -O0
DEBUGGING = -g
endif
CFLAGS = -Wall $(DEBUGGING) $(OPTIMIZATION) $(STANDARDS) $(INCLUDES) $(DEFINES)
CORE_SRC = \
@@ -86,6 +90,7 @@ HANDLER_SRC = \
$(BACNET_HANDLER)/h_whohas.c \
$(BACNET_HANDLER)/h_ihave.c \
$(BACNET_HANDLER)/h_cov.c \
$(BACNET_HANDLER)/h_ucov.c \
$(BACNET_HANDLER)/s_arfs.c \
$(BACNET_HANDLER)/s_awfs.c \
$(BACNET_HANDLER)/s_dcc.c \
+10 -9
View File
@@ -67,6 +67,9 @@
<Unit filename="..\demo\handler\h_ihave.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\h_npdu.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\h_rd.c">
<Option compilerVar="CC" />
</Unit>
@@ -82,24 +85,21 @@
<Unit filename="..\demo\handler\h_ts.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\h_ucov.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\h_whohas.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\h_whois.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\h_npdu.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\h_wp.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\noserv.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\s_iam.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\s_arfs.c">
<Option compilerVar="CC" />
</Unit>
@@ -112,9 +112,9 @@
<Unit filename="..\demo\handler\s_iam.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\s_ihave.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\s_ihave.c">
<Option compilerVar="CC" />
</Unit>
<Unit filename="..\demo\handler\s_rd.c">
<Option compilerVar="CC" />
</Unit>
@@ -236,6 +236,7 @@
<Unit filename="..\include\whohas.h" />
<Unit filename="..\include\whois.h" />
<Unit filename="..\include\wp.h" />
<Unit filename="Makefile" />
<Unit filename="..\ports\win32\bip-init.c">
<Option compilerVar="CC" />
</Unit>
+1
View File
@@ -88,6 +88,7 @@ HANDLER_SRC = $(BACNET_HANDLER)\txbuf.c \
$(BACNET_HANDLER)\h_whohas.c \
$(BACNET_HANDLER)\h_ihave.c \
$(BACNET_HANDLER)\h_cov.c \
$(BACNET_HANDLER)\h_ucov.c \
$(BACNET_HANDLER)\s_arfs.c \
$(BACNET_HANDLER)\s_awfs.c \
$(BACNET_HANDLER)\s_dcc.c \