2 * @brief General purpose macros.
13 #define model_print(fmt, ...) do { dprintf(model_out, fmt, ##__VA_ARGS__); } while (0)
16 #define DEBUG(fmt, ...) do { model_print("*** %15s:%-4d %25s() *** " fmt, __FILE__, __LINE__, __func__, ##__VA_ARGS__); } while (0)
17 #define DBG() DEBUG("\n")
18 #define DBG_ENABLED() (1)
20 #define DEBUG(fmt, ...)
22 #define DBG_ENABLED() (0)
25 void assert_hook(void);
28 #define ASSERT(expr) \
31 fprintf(stderr, "Error: assertion failed in %s at line %d\n", __FILE__, __LINE__); \
32 /* print_trace(); // Trace printing may cause dynamic memory allocation */ \
38 #define ASSERT(expr) \
40 #endif /* CONFIG_ASSERT */
42 #define error_msg(...) fprintf(stderr, "Error: " __VA_ARGS__)
44 void print_trace(void);
45 #endif /* __COMMON_H__ */