From 97251459f74c66773369cd4274e722c1fab95d9d Mon Sep 17 00:00:00 2001
From: Cristian Maglie <c.maglie@arduino.cc>
Date: Fri, 6 Mar 2015 15:14:19 +0100
Subject: [PATCH]  updated validation test for usb_device

---
 .../validation_usb_device/test_usb_device.cpp   | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/cores/validation/validation_usb_device/test_usb_device.cpp b/cores/validation/validation_usb_device/test_usb_device.cpp
index ddc3060e..e69c7193 100644
--- a/cores/validation/validation_usb_device/test_usb_device.cpp
+++ b/cores/validation/validation_usb_device/test_usb_device.cpp
@@ -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);
-- 
GitLab