summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2012-01-04 06:33:54 +0000
committerRafaël Carré <rafael.carre@gmail.com>2012-01-04 06:33:54 +0000
commite8f5c5439e2da2f4ded35a3187e9191aea8bc003 (patch)
treeeb9c7fe86b69dcb775ffe99fdea91866addcd18d
parenta22e161e0fed5f714f9a40145b6850d26f997816 (diff)
downloadrockbox-e8f5c5439e2da2f4ded35a3187e9191aea8bc003.tar.gz
rockbox-e8f5c5439e2da2f4ded35a3187e9191aea8bc003.zip
coldfire: move debug-target.h content in .c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31563 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/coldfire/debug-coldfire.c15
-rw-r--r--firmware/target/coldfire/debug-target.h34
2 files changed, 14 insertions, 35 deletions
diff --git a/firmware/target/coldfire/debug-coldfire.c b/firmware/target/coldfire/debug-coldfire.c
index b021cd19c0..7da2f0df49 100644
--- a/firmware/target/coldfire/debug-coldfire.c
+++ b/firmware/target/coldfire/debug-coldfire.c
@@ -27,12 +27,25 @@
27#include "button.h" 27#include "button.h"
28#include "powermgmt.h" 28#include "powermgmt.h"
29#include "adc.h" 29#include "adc.h"
30#include "debug-target.h"
31#include "lcd-remote.h" 30#include "lcd-remote.h"
32#ifdef IAUDIO_X5 31#ifdef IAUDIO_X5
33#include "ds2411.h" 32#include "ds2411.h"
34#endif 33#endif
35 34
35#if (CONFIG_KEYPAD == IRIVER_H100_PAD) || \
36 (CONFIG_KEYPAD == IRIVER_H300_PAD)
37# define DEBUG_CANCEL BUTTON_OFF
38
39#elif CONFIG_KEYPAD == IAUDIO_X5M5_PAD
40# define DEBUG_CANCEL BUTTON_REC
41
42#elif (CONFIG_KEYPAD == IAUDIO_M3_PAD)
43# define DEBUG_CANCEL BUTTON_RC_REC
44
45#elif (CONFIG_KEYPAD == MPIO_HD200_PAD) || \
46 (CONFIG_KEYPAD == MPIO_HD300_PAD)
47# define DEBUG_CANCEL BUTTON_REC
48#endif
36/* Tool function to read the flash manufacturer and type, if available. 49/* Tool function to read the flash manufacturer and type, if available.
37 Only chips which could be reprogrammed in system will return values. 50 Only chips which could be reprogrammed in system will return values.
38 (The mode switch addresses vary between flash manufacturers, hence addr1/2) */ 51 (The mode switch addresses vary between flash manufacturers, hence addr1/2) */
diff --git a/firmware/target/coldfire/debug-target.h b/firmware/target/coldfire/debug-target.h
index 8717532425..e69de29bb2 100644
--- a/firmware/target/coldfire/debug-target.h
+++ b/firmware/target/coldfire/debug-target.h
@@ -1,34 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2010 by Marcin Bukat
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#if (CONFIG_KEYPAD == IRIVER_H100_PAD) || \
22 (CONFIG_KEYPAD == IRIVER_H300_PAD)
23# define DEBUG_CANCEL BUTTON_OFF
24
25#elif CONFIG_KEYPAD == IAUDIO_X5M5_PAD
26# define DEBUG_CANCEL BUTTON_REC
27
28#elif (CONFIG_KEYPAD == IAUDIO_M3_PAD)
29# define DEBUG_CANCEL BUTTON_RC_REC
30
31#elif (CONFIG_KEYPAD == MPIO_HD200_PAD) || \
32 (CONFIG_KEYPAD == MPIO_HD300_PAD)
33# define DEBUG_CANCEL BUTTON_REC
34#endif