예제 #1
0
파일: uart.c 프로젝트: cyj1988jyc/2440-test
static void Uart0_SendString(char *pt)
{
    while(*pt)
        Uart0_SendByte(*pt++);
}
예제 #2
0
void Uart0_SendString(char *pt) {
    while (*pt)						    // mandar byte a byte hasta completar string
	Uart0_SendByte(*pt++);
}