#ifndef _DEV_DEBUG_H_ #define _DEV_DEBUG_H_ /* * Copyright (C) 2001-2005 by egnite Software GmbH. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holders nor the names of * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * For additional information see http://www.ethernut.de/ */ /* * $Log$ * Revision 1.16 2009/03/05 22:16:57 freckle * use __NUT_EMULATION instead of __APPLE__, __linux__, or __CYGWIN__ * * Revision 1.15 2008/08/11 06:59:59 haraldkipp * BSD types replaced by stdint types (feature request #1282721). * * Revision 1.14 2008/08/06 12:51:12 haraldkipp * Added support for Ethernut 5 (AT91SAM9XE reference design). * * Revision 1.13 2008/02/15 17:00:24 haraldkipp * Spport for AT91SAM7SE512 added. * * Revision 1.12 2007/10/04 20:33:55 olereinhardt * Support for SAM7S256 added * * Revision 1.11 2006/08/31 19:01:08 haraldkipp * Using devDebug2 for the DBGU output was a bad idea. Some AT91 chips * provide more than two UARTs. We now use devDebug to specify the DBGU * device. Baudrate calculations failed on CPUs running on a processor * clock, which differs from a futher divided main clock. This had been * fixed. * * Revision 1.10 2006/07/05 07:45:29 haraldkipp * Split on-chip interface definitions. * * Revision 1.9 2006/02/23 15:34:00 haraldkipp * Support for Philips LPC2xxx Family and LPC-E2294 Board from Olimex added. * Many thanks to Michael Fischer for this port. * * Revision 1.8 2005/07/26 15:49:59 haraldkipp * Cygwin support added. * * Revision 1.7 2005/04/05 17:49:06 haraldkipp * Make it work on Wolf, but breaks AT91EB40A. * * Revision 1.6 2005/02/10 07:06:50 hwmaier * Changes to incorporate support for AT90CAN128 CPU * * Revision 1.5 2004/10/03 18:39:12 haraldkipp * GBA debug output on screen * * Revision 1.4 2004/09/08 10:53:14 haraldkipp * Our first device for the EB40A * * Revision 1.3 2004/04/07 12:13:57 haraldkipp * Matthias Ringwald's *nix emulation added * * Revision 1.2 2004/03/16 16:48:28 haraldkipp * Added Jan Dubiec's H8/300 port. * * Revision 1.1.1.1 2003/05/09 14:41:05 haraldkipp * Initial using 3.2.1 * * Revision 1.1 2003/04/21 16:57:05 harald * First check in * */ #include #include #include #include /*! * \file dev/debug.h * \brief Debug device definitions. */ /* * Available devices. */ #if defined(__AVR__) #if defined(__AVR_AT90USB1287__) #else extern NUTDEVICE devDebug0; #endif #ifdef __AVR_ENHANCED__ extern NUTDEVICE devDebug1; #endif #elif defined(__H8300H__) || defined(__H8300S__) /* SCIs (USARTs) in the H8/3068F; it should be adjusted for other H8 devices */ extern NUTDEVICE devDebug0; extern NUTDEVICE devDebug1; extern NUTDEVICE devDebug2; #elif defined(__arm__) && !defined(__CORTEX__) #ifdef MCU_AT91R40008 extern NUTDEVICE devDebug0; extern NUTDEVICE devDebug1; #elif defined(MCU_AT91SAM7X) || defined (MCU_AT91SAM7S256) || defined(MCU_AT91SAM9260) || defined (MCU_AT91SAM7SE512) || defined(MCU_AT91SAM9XE512) || defined(MCU_AT91SAM9G45) extern NUTDEVICE devDebug; #elif defined(MCU_GBA) extern NUTDEVICE devDebug0; #elif defined(MCU_LPC2XXX) extern NUTDEVICE devDebug0; extern NUTDEVICE devDebug1; #elif defined(MCU_ZERO) extern NUTDEVICE devDebug0; #endif #elif defined(__arm__) && defined(__CORTEX__) #if defined(MCU_STM32F10X) extern NUTDEVICE *devDebug0; #elif defined(MCU_LPC17xx) extern NUTDEVICE devDebug0; extern NUTDEVICE devDebug1; extern NUTDEVICE devDebug2; extern NUTDEVICE devDebug3; #endif #elif defined(MCU_MCF5225X) extern NUTDEVICE devDebug0; extern NUTDEVICE devDebug1; extern NUTDEVICE devDebug2; #elif defined(__AVR32__) extern NUTDEVICE devDebug0; extern NUTDEVICE devDebug1; extern NUTDEVICE devDebug2; extern NUTDEVICE devDebug3; #endif #ifdef __NUT_EMULATION__ extern NUTDEVICE devDebug0; extern NUTDEVICE devDebug1; #endif #endif /* #ifndef _DEV_DEBUG_H_ */