Beispiel #1
0
void USBPutString(char *s)
{
  while(*s)
    USBPutChar(*s++);
}
Beispiel #2
0
static int usb_putchar(char c, FILE *stream)
{
	USBPutChar(c);
	return 0;
}