Subversion Repositories NaviCtrl

Rev

Rev 1 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 ingob 1
#ifndef _PRINTF_P_H_
2
#define _PRINTF_P_H_
3
 
4
 
5
 
41 ingob 6
void _printf_P (char const *fmt0, ...);
1 ingob 7
 
8
 
9
#define printf_P(format, args...)   _printf_P(format , ## args)
10
#define LCD_printfxy(x,y,format, args...)  { DispPtr = y * 20 + x; _printf_P(format , ## args);}
11
#define LCD_printf(format, args...)  {  _printf_P(format , ## args);}
12
 
13
#endif