Skip to content
Snippets Groups Projects
Commit 97251459 authored by Cristian Maglie's avatar Cristian Maglie Committed by Cristian Maglie
Browse files

updated validation test for usb_device

parent d1813604
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,10 @@
void setup(void)
{
SERIAL_PORT_MONITOR.begin( 115200 );
while (!SERIAL_PORT_MONITOR); // Wait for serial port to connect - used on Leonardo, Teensy and other boards with built-in USB CDC serial connection
SERIAL_PORT_MONITOR.println("Start USB device test");
#ifdef HID_ENABLED
Mouse.begin();
......@@ -37,11 +41,11 @@ void setup(void)
#endif
#ifdef CDC_ENABLED
SerialUSB.begin(115200);
SERIAL_PORT_USBVIRTUAL.begin(115200);
#endif
}
char testchar[10];
void loop(void)
{
#ifdef HID_ENABLED
......@@ -64,11 +68,14 @@ void loop(void)
#endif
#ifdef CDC_ENABLED
if (SerialUSB.available() > 0)
if (SERIAL_PORT_USBVIRTUAL.available() > 0)
{
char inChar;
while( -1 == (inChar = SerialUSB.read()));
SerialUSB.print(inChar);
//while( -1 == (inChar = SERIAL_PORT_USBVIRTUAL.read()));
inChar = SERIAL_PORT_USBVIRTUAL.read();
SERIAL_PORT_USBVIRTUAL.print(inChar);
}
delay(10);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment