Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 782 → Rev 783

/C-OSD/trunk/max7456_software_spi.c
197,6 → 197,16
}
 
/**
* write an ascii <string> with lenght <len> at <x>/<y> to MAX7456 display memory
*/
void write_ascii_string_len(uint8_t x, uint8_t y, char *string, uint8_t len) {
while (len--) {
write_ascii_char(((x++)+(y * 30)), *string);
string++;
}
}
 
/**
* write an ascii <string> from progmen at <x>/<y> to MAX7456 display memory
*/
void write_ascii_string_pgm(uint8_t x, uint8_t y, const char *string) {