コード例 #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;
}