MPLAB® Harmony Graphics Suite
|
define LE_ASSERT(val) assert(val) define LE_ASSERT_MSG(val, msg) for ( ; !(val) ; assert(val) ) { leSetErrorMessage(msg); } define LE_ASSERT_VAR(val, fmt, ...) for ( ; !(val) ; assert(val) ) { leSprintfErrorMessage(fmt, __VA_ARGS__); }
#define LE_ASSERT(val)
MPLAB® Harmony Graphics Suite
|