kerneltest/e32test/device/t_usb.h
branchRCL_3
changeset 257 3e88ff8f41d5
parent 256 c1f20ce4abcf
--- a/kerneltest/e32test/device/t_usb.h	Tue Aug 31 16:34:26 2010 +0300
+++ b/kerneltest/e32test/device/t_usb.h	Wed Sep 01 12:34:56 2010 +0100
@@ -230,36 +230,42 @@
 		do { \
 		iConsole->Printf(_L(string)); \
 		iConsole->Printf(_L("\n")); \
+		RDebug::Print(_L(string)); \
 		} while (0)
 
 #define TUSB_PRINT1(string, a) \
 		do { \
 		iConsole->Printf(_L(string), (a)); \
 		iConsole->Printf(_L("\n")); \
+		RDebug::Print(_L(string), (a)); \
 		} while (0)
 
 #define TUSB_PRINT2(string, a, b) \
 		do { \
 		iConsole->Printf(_L(string), (a), (b)); \
 		iConsole->Printf(_L("\n")); \
+		RDebug::Print(_L(string), (a), (b)); \
 		} while (0)
 
 #define TUSB_PRINT3(string, a, b, c) \
 		do { \
 		iConsole->Printf(_L(string), (a), (b), (c)); \
 		iConsole->Printf(_L("\n")); \
+		RDebug::Print(_L(string), (a), (b), (c)); \
 		} while (0)
 
 #define TUSB_PRINT5(string, a, b, c, d, e) \
 		do { \
 		iConsole->Printf(_L(string), (a), (b), (c), (d), (e)); \
 		iConsole->Printf(_L("\n")); \
+		RDebug::Print(_L(string), (a), (b), (c), (d), (e)); \
 		} while (0)
 
 #define TUSB_PRINT6(string, a, b, c, d, e, f) \
 		do { \
 		iConsole->Printf(_L(string), (a), (b), (c), (d), (e), (f)); \
 		iConsole->Printf(_L("\n")); \
+		RDebug::Print(_L(string), (a), (b), (c), (d), (e), (f)); \
 		} while (0)
 
 #define TUSB_VERBOSE_PRINT(string) \