OSDN Git Service

First commitment for the BlackTank LPC1769.
[blacktank/blacktank.git] / debug_helper.h
1 #ifndef DEBUG_HELPER_H
2 #define DEBUG_HELPER_H
3
4 #include <kernel.h>
5 #include <t_syslog.h>
6 #include <syssvc/syslog.h>
7
8 void svc_perror(const char *file, int_t line, const char *expr, ER ercd);
9
10 #define SVC_PERROR(expr) svc_perror(__FILE__, __LINE__, #expr, (expr))
11
12 #endif
13