mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
fix compiling of debug menu for tcc780x
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16316 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
98e896cede
commit
b650bc592a
3 changed files with 24 additions and 3 deletions
|
@ -92,7 +92,7 @@
|
||||||
#include "pcf50605.h"
|
#include "pcf50605.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CONFIG_CPU == DM320 || CONFIG_CPU == S3C2440
|
#if CONFIG_CPU == DM320 || CONFIG_CPU == S3C2440 || CONFIG_CPU == TCC7801
|
||||||
#include "debug-target.h"
|
#include "debug-target.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
22
firmware/target/arm/tcc780x/debug-target.h
Executable file
22
firmware/target/arm/tcc780x/debug-target.h
Executable file
|
@ -0,0 +1,22 @@
|
||||||
|
/***************************************************************************
|
||||||
|
* __________ __ ___.
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
bool __dbg_hw_info(void);
|
||||||
|
bool __dbg_ports(void);
|
||||||
|
|
|
@ -26,8 +26,8 @@
|
||||||
#include "lcd.h"
|
#include "lcd.h"
|
||||||
#include "sprintf.h"
|
#include "sprintf.h"
|
||||||
#include "font.h"
|
#include "font.h"
|
||||||
|
#include "debug-target.h"
|
||||||
|
|
||||||
bool __dbg_ports(void);
|
|
||||||
bool __dbg_ports(void)
|
bool __dbg_ports(void)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
@ -36,7 +36,6 @@ bool __dbg_ports(void)
|
||||||
//extern char r_buffer[5];
|
//extern char r_buffer[5];
|
||||||
//extern int r_button;
|
//extern int r_button;
|
||||||
|
|
||||||
bool __dbg_hw_info(void);
|
|
||||||
bool __dbg_hw_info(void)
|
bool __dbg_hw_info(void)
|
||||||
{
|
{
|
||||||
int line = 0, button, oldline;
|
int line = 0, button, oldline;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue