예제 #1
0
파일: uart.cpp 프로젝트: ChrisDD11/SkyDrop
void uart_send(char * msg)
{
	char * ptr = msg;

	while (*ptr != 0)
	{
		uart.Write(*ptr);
		ptr++;
	}
}