Blame view

app/app-prime-modbus/include/debug_printf.h 264 Bytes
8c2952457   김태훈   응용 프로그램 추가
1
2
3
4
5
6
7
8
9
10
  #ifndef DEBUG_PRINTF_H_
  #define DEBUG_PRINTF_H_
  
  #define DPRINTF( fmt, args...)  __debug_printf( __FILE__, __LINE__, fmt, ## args);
  //#define DPRINTF( fmt, args...)
  
  extern void __debug_printf( char *file, int line, char *fmt, ...);
  
  
  #endif /* DEBUG_PRINTF_H_ */