Difference between revisions of "C51 Serial"

From ElectroDragon Wiki
 
(No difference)

Latest revision as of 13:21, 21 May 2021

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

Status

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