Subversion Repositories Projects

Rev

Rev 412 | Rev 519 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 412 Rev 489
Line 80... Line 80...
80
void write_ascii_string(uint8_t, uint8_t, char*);
80
void write_ascii_string(uint8_t, uint8_t, char*);
Line 81... Line 81...
81
 
81
 
82
/**
82
/**
83
 *  write an ascii <string> from progmen at <x>/<y> to MAX7456 display memory
83
 *  write an ascii <string> from progmen at <x>/<y> to MAX7456 display memory
84
 */
84
 */
Line 85... Line 85...
85
void write_ascii_string_pgm(uint8_t, uint8_t, char*);
85
void write_ascii_string_pgm(uint8_t, uint8_t, const char*);
86
 
86
 
87
/**
87
/**
88
 *  write an <string> from progmen at <x>/<y> downwards to MAX7456 display memory
88
 *  write an <string> from progmen at <x>/<y> downwards to MAX7456 display memory
Line 89... Line 89...
89
 */
89
 */
90
void write_string_pgm_down(uint8_t, uint8_t, char*, uint8_t);
90
void write_string_pgm_down(uint8_t, uint8_t, const char*, uint8_t);
91
 
91
 
92
/**
92
/**