kerneltest/f32test/shostmassstorage/msman/shared/debug.h
author hgs
Tue, 26 Oct 2010 12:49:20 +0100
changeset 297 b2826f67641f
parent 0 a41df078684a
permissions -rw-r--r--
201043_03

// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//



/**
 @file
 @internalTechnology
*/


#ifndef DEBUG_H
#define DEBUG_H

//#define _USBOTG_DEBUG_PRINT_
//#define _USBHOST_DEBUG_PRINT_

#if (defined(_DEBUG) || defined(_DEBUG_RELEASE))
#include <e32debug.h>
#endif

#if defined(_USBOTG_DEBUG_PRINT_) && (defined(_DEBUG) || defined(_DEBUG_RELEASE))
/** Trace - format string  */
#define __USBOTGPRINT(t) {RDebug::Print(t);}
/** Trace - format string with 1 param */
#define __USBOTGPRINT1(t,a) {RDebug::Print(t,a);}
/** Trace - format string with 2 params */
#define __USBOTGPRINT2(t,a,b) {RDebug::Print(t,a,b);}
/** Trace - format string with 3 params */
#define __USBOTGPRINT3(t,a,b,c) {RDebug::Print(t,a,b,c);}
/** Trace - format string with 4 params */
#define __USBOTGPRINT4(t,a,b,c,d) {RDebug::Print(t,a,b,c,d);}
/** Trace - format string with 5 params */
#define __USBOTGPRINT5(t,a,b,c,d,e) {RDebug::Print(t,a,b,c,d,e);}
#else
/** NULL definition */
#define __USBOTGPRINT(t)
/** NULL definition */
#define __USBOTGPRINT1(t,a)
/** NULL definition */
#define __USBOTGPRINT2(t,a,b)
/** NULL definition */
#define __USBOTGPRINT3(t,a,b,c)
/** NULL definition */
#define __USBOTGPRINT4(t,a,b,c,d)
/** NULL definition */
#define __USBOTGPRINT5(t,a,b,c,d,e)
#endif


#if defined(_USBHOST_DEBUG_PRINT_) && (defined(_DEBUG) || defined(_DEBUG_RELEASE))
/** Trace - format string  */
#define __USBHOSTPRINT(t) {RDebug::Print(t);}
/** Trace - format string with 1 param */
#define __USBHOSTPRINT1(t,a) {RDebug::Print(t,a);}
/** Trace - format string with 2 params */
#define __USBHOSTPRINT2(t,a,b) {RDebug::Print(t,a,b);}
/** Trace - format string with 3 params */
#define __USBHOSTPRINT3(t,a,b,c) {RDebug::Print(t,a,b,c);}
/** Trace - format string with 4 params */
#define __USBHOSTPRINT4(t,a,b,c,d) {RDebug::Print(t,a,b,c,d);}
/** Trace - format string with 5 params */
#define __USBHOSTPRINT5(t,a,b,c,d,e) {RDebug::Print(t,a,b,c,d,e);}
#else
/** NULL definition */
#define __USBHOSTPRINT(t)
/** NULL definition */
#define __USBHOSTPRINT1(t,a)
/** NULL definition */
#define __USBHOSTPRINT2(t,a,b)
/** NULL definition */
#define __USBHOSTPRINT3(t,a,b,c)
/** NULL definition */
#define __USBHOSTPRINT4(t,a,b,c,d)
/** NULL definition */
#define __USBHOSTPRINT5(t,a,b,c,d,e)
#endif

#if defined(_USBMS_DEBUG_PRINT_) && (defined(_DEBUG) || defined(_DEBUG_RELEASE))
#define __PRINT(t) {RDebug::Print(t);}
#define __PRINT1(t,a) {RDebug::Print(t,a);}
#define __PRINT2(t,a,b) {RDebug::Print(t,a,b);}
#define __PRINT3(t,a,b,c) {RDebug::Print(t,a,b,c);}
#define __PRINT4(t,a,b,c,d) {RDebug::Print(t,a,b,c,d);}


#else
#define __PRINT(t)
#define __PRINT1(t,a)
#define __PRINT2(t,a,b)
#define __PRINT3(t,a,b,c)
#define __PRINT4(t,a,b,c,d)

#endif

#endif // DEBUG_H