Subversion Repositories NaviCtrl

Compare Revisions

Ignore whitespace Rev 42 → Rev 43

/tags/V0.12/printf_P.h
0,0 → 1,13
#ifndef _PRINTF_P_H_
#define _PRINTF_P_H_
 
 
 
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