Ejemplo n.º 1
0
static void Uart0_SendString(char *pt)
{
    while(*pt)
        Uart0_SendByte(*pt++);
}
Ejemplo n.º 2
0
void Uart0_SendString(char *pt) {
    while (*pt)						    // mandar byte a byte hasta completar string
	Uart0_SendByte(*pt++);
}