Subversion Repositories NaviCtrl

Rev

Rev 1 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef _PRINTF_P_H_
#define _PRINTF_P_H_



extern void _printf_P (char const *fmt0, ...);


#define printf_P(format, args...)   _printf_P(format , ## args)
#define LCD_printfxy(x,y,format, args...)  { DispPtr = y * 20 + x; _printf_P(format , ## args);}
#define LCD_printf(format, args...)  {  _printf_P(format , ## args);}

#endif