C51 Serial

From ElectroDragon Wiki
Revision as of 13:21, 21 May 2021 by Chao (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
  • getkey();
  • printf();
void send_string(char *Str)
{
	while(*Str!=0)
	{
		Uart_SendDataPoll(M0P_UART1, *Str++);
	}
}

Status

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