C51 Serial

From ElectroDragon Wiki
  • getkey();
  • printf();
void send_string(char *Str)
{
	while(*Str!=0)
	{
		Uart_SendDataPoll(M0P_UART1, *Str++);
	}
}

Status

  • ISR = Interrupt status = Interrupt Service Routine (ISR)