#include "piccolo_all.h"

char c;

void main(void)
{
	InitializeSystem();
	while (!usb_cdc_kbhit())
	{
		ProcessIO();
	}
	outString("Isten hozott a PICOLLO projektben!\n");
	outString("Hello-poll.c program (USBpolling))\n");
	while (1)
	{
		c=usb_cdc_getc();
		printf("Vett karakter: %c = %d\r\n",c,c);
	}
}