13 lines
239 B
C
13 lines
239 B
C
|
#ifndef PIBOT_PRINT_H_
|
||
|
#define PIBOT_PRINT_H_
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#if DEBUG_ENABLE
|
||
|
#define pb_printf(format,...) printf("" __FILE__ ":%d - " format "\r\n", __LINE__, ##__VA_ARGS__)
|
||
|
#else
|
||
|
#define pb_printf(format,...)
|
||
|
#endif
|
||
|
|
||
|
#endif
|