Eliminate the build error in bacepics when PRINT_ENABLED = 0.
Still lots of warnings in bacepics, but I don't see an issue with that, for an application whose whole point is to print output.
This commit is contained in:
@@ -189,8 +189,9 @@ extern "C" {
|
|||||||
BACNET_APPLICATION_DATA_VALUE * value,
|
BACNET_APPLICATION_DATA_VALUE * value,
|
||||||
BACNET_PROPERTY_ID property);
|
BACNET_PROPERTY_ID property);
|
||||||
#else
|
#else
|
||||||
#define bacapp_parse_application_data(x,y,z) {(void)x;(void)y;(void)z;}
|
/* Provide harmless return values */
|
||||||
#define bacapp_print_value(x,y,z) {(void)x;(void)y;(void)z;}
|
#define bacapp_parse_application_data(x,y,z) false
|
||||||
|
#define bacapp_print_value(x,y,z) false
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef TEST
|
#ifdef TEST
|
||||||
|
|||||||
Reference in New Issue
Block a user