예제 #1
0
파일: main.c 프로젝트: elerson/RPL
void USBPutString(char *s)
{
  while(*s)
    USBPutChar(*s++);
}
예제 #2
0
파일: Hardware.cpp 프로젝트: jjg/microtouch
static int usb_putchar(char c, FILE *stream)
{
	USBPutChar(c);
	return 0;
}