2008-04-11 15:49:48 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Karl Kurbjun
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2008-05-16 18:40:28 +00:00
|
|
|
#ifndef DEBUG_TARGET_H
|
|
|
|
#define DEBUG_TARGET_H
|
2008-04-11 15:49:48 +00:00
|
|
|
|
|
|
|
#define DEBUG_CANCEL BUTTON_BACK
|
|
|
|
bool __dbg_hw_info(void);
|
|
|
|
bool __dbg_ports(void);
|
|
|
|
|
2008-05-16 18:40:28 +00:00
|
|
|
#endif /* DEBUG_TARGET_H */
|