summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2012-01-04 06:34:56 +0000
committerRafaël Carré <rafael.carre@gmail.com>2012-01-04 06:34:56 +0000
commit606155cd20a4f6b07a803d03f4dabbb7e6b2dc6d (patch)
treeca673a7906eab174a5ba16e2e131abe9051ebd83
parentb619a2f42468ae4b7cc3951aaa22cc1f36ac442e (diff)
downloadrockbox-606155cd20a4f6b07a803d03f4dabbb7e6b2dc6d.tar.gz
rockbox-606155cd20a4f6b07a803d03f4dabbb7e6b2dc6d.zip
as3525: move debug-target.h content to .c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31572 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/arm/as3525/debug-as3525.c3
-rw-r--r--firmware/target/arm/as3525/debug-target.h26
2 files changed, 2 insertions, 27 deletions
diff --git a/firmware/target/arm/as3525/debug-as3525.c b/firmware/target/arm/as3525/debug-as3525.c
index da303df0f3..783f3f68a4 100644
--- a/firmware/target/arm/as3525/debug-as3525.c
+++ b/firmware/target/arm/as3525/debug-as3525.c
@@ -20,7 +20,6 @@
20 ****************************************************************************/ 20 ****************************************************************************/
21 21
22#include <stdbool.h> 22#include <stdbool.h>
23#include <debug-target.h>
24#include "button.h" 23#include "button.h"
25#include "lcd.h" 24#include "lcd.h"
26#include "font.h" 25#include "font.h"
@@ -31,6 +30,8 @@
31#include "adc.h" 30#include "adc.h"
32#include "storage.h" 31#include "storage.h"
33 32
33#define DEBUG_CANCEL BUTTON_LEFT
34
34#define ON "Enabled" 35#define ON "Enabled"
35#define OFF "Disabled" 36#define OFF "Disabled"
36 37
diff --git a/firmware/target/arm/as3525/debug-target.h b/firmware/target/arm/as3525/debug-target.h
index a86c6f2d41..e69de29bb2 100644
--- a/firmware/target/arm/as3525/debug-target.h
+++ b/firmware/target/arm/as3525/debug-target.h
@@ -1,26 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2007 by Karl Kurbjun
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef _DEBUG_TARGET_H_
23#define _DEBUG_TARGET_H_
24
25#define DEBUG_CANCEL BUTTON_LEFT
26#endif