#ifndef PIBOT_PRINT_H_ #define PIBOT_PRINT_H_ #include #if DEBUG_ENABLE #define pb_printf(format,...) printf("" __FILE__ ":%d - " format "\r\n", __LINE__, ##__VA_ARGS__) #else #define pb_printf(format,...) #endif #endif