##// END OF EJS Templates
Basic serial variable creation and update...
Basic serial variable creation and update This is a really basic implementation, this should help to develop the full VariableController pipeline. Added debug header to allow a custom behavior between debug and production, using SCIQLOP_ERROR macro will blow on debug but will have a different behavior in production code. This will allow to highlight any unexpected behavior without flooding stdout. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r2:c7f53bda4647
r2:c7f53bda4647
Show More
debug.h
9 lines | 155 B | text/x-c | CLexer
#ifndef DEBUG_H
#define DEBUG_H
#ifdef SCIQLOP_CRASH_ON_ERROR
#define SCIQLOP_ERROR(x) assert(false)
#else
#define SCIQLOP_ERROR(x)
#endif
#endif