Statistics: Posted by Guest — Sat Oct 08, 2016 11:42 am
Code:
int __attribute__((section(".irom0.text"))) uart0_puts(const char *s) {
char c;
int i = 0;;
while ((c = *s++) != (char) 0) {
i++;
uart0_putc(c);
}
return i;
}
Statistics: Posted by raspberrypidmx — Thu Oct 06, 2016 11:06 pm
Statistics: Posted by Guest — Fri Sep 30, 2016 5:50 pm
Statistics: Posted by raspberrypidmx — Thu Sep 29, 2016 2:46 am