You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CubeSatSim/libs/libmf/source/lcdwrstr.c

17 lines
232 B

#include "libmflcd.h"
void lcd_writestr(const char __generic *ch)
{
for (;;) {
char __autodata c = *ch++;
if (!c)
break;
if (c == '\n') {
lcd_writecmd(0xc0);
} else {
lcd_writedata(c);
}
lcd_waitshort();
}
}

Powered by TurnKey Linux.