Changed the demo applications to use BACNET_IFACE environment variable when configuring the datalink. Thank you to Tomas Zerolo for the patch!

This commit is contained in:
skarg
2007-09-29 14:32:15 +00:00
parent 522d9f4f7d
commit a6d1183bf6
12 changed files with 16 additions and 14 deletions
+2 -2
View File
@@ -39,8 +39,8 @@
#define BACNET_VERSION(x,y,z) (((x)<<16)+((y)<<8)+(z))
#endif
#define BACNET_VERSION_TEXT "1.0.0"
#define BACNET_VERSION_CODE BACNET_VERSION(1,0,0)
#define BACNET_VERSION_TEXT "0.3.6"
#define BACNET_VERSION_CODE BACNET_VERSION(0,3,6)
#define BACNET_VERSION_MAJOR ((BACNET_VERSION_CODE>>16)&0xFF)
#define BACNET_VERSION_MINOR ((BACNET_VERSION_CODE>>8)&0xFF)
#define BACNET_VERSION_MAINTENANCE (BACNET_VERSION_CODE&0xFF)