From d65de8a69a500490ce66b8f6011f5f0e45b87576 Mon Sep 17 00:00:00 2001 From: skarg Date: Sun, 15 Jun 2014 00:25:13 +0000 Subject: [PATCH] added BACAPP_MINIMAL for defining some minimum appliacation encoding and decoding. --- bacnet-stack/include/config.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/bacnet-stack/include/config.h b/bacnet-stack/include/config.h index 330e6d39..8438bcbb 100644 --- a/bacnet-stack/include/config.h +++ b/bacnet-stack/include/config.h @@ -113,6 +113,7 @@ /* BACAPP decodes WriteProperty service requests Choose the datatypes that your application supports */ #if !(defined(BACAPP_ALL) || \ + defined(BACAPP_MINIMAL) || \ defined(BACAPP_NULL) || \ defined(BACAPP_BOOLEAN) || \ defined(BACAPP_UNSIGNED) || \ @@ -145,6 +146,17 @@ #define BACAPP_TIME #define BACAPP_OBJECT_ID #define BACAPP_LIGHTING_COMMAND +#elif defined (BACAPP_MINIMAL) +#define BACAPP_NULL +#define BACAPP_BOOLEAN +#define BACAPP_UNSIGNED +#define BACAPP_SIGNED +#define BACAPP_REAL +#define BACAPP_CHARACTER_STRING +#define BACAPP_ENUMERATED +#define BACAPP_DATE +#define BACAPP_TIME +#define BACAPP_OBJECT_ID #endif /*