C51 Serial
- getkey();
- printf();
void send_string(char *Str)
{
while(*Str!=0)
{
Uart_SendDataPoll(M0P_UART1, *Str++);
}
}
Status
- ISR = Interrupt status = Interrupt Service Routine (ISR)
void send_string(char *Str)
{
while(*Str!=0)
{
Uart_SendDataPoll(M0P_UART1, *Str++);
}
}