Fix stupid typo...
[kugel-rb.git] / firmware / target / arm / as3525 / debug-as3525.c
blob80f8702360ea5621c745f093fff0ba43d6bc643a
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright © 2008 Rafaël Carré
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.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include <stdbool.h>
23 #include "debug-target.h"
24 #include "button.h"
25 #include "lcd.h"
26 #include "font.h"
27 #include "system.h"
28 #include "sprintf.h"
29 #include "cpu.h"
31 #define _DEBUG_PRINTF(a,varargs...) \
32 snprintf(buf, sizeof(buf), (a), ##varargs); lcd_puts(0,line++,buf)
34 /* FIXME: target tree is including ./debug-target.h rather than the one in
35 * sansa-fuze/, even though deps contains the correct one
36 * if I put the below into a sansa-fuze/debug-target.h, it doesn't work*/
37 #if defined(SANSA_FUZE) || defined(SANSA_E200V2)
38 #define DEBUG_DBOP
39 short button_dbop_data(void);
40 #endif
43 /* TODO */
45 bool __dbg_hw_info(void)
47 return false;
50 bool __dbg_ports(void)
52 char buf[50];
53 int line;
55 lcd_clear_display();
56 lcd_setfont(FONT_SYSFIXED);
58 while(1)
60 line = 0;
61 _DEBUG_PRINTF("[GPIO Values and Directions]");
62 _DEBUG_PRINTF("GPIOA: %2x DIR: %2x", GPIOA_DATA, GPIOA_DIR);
63 _DEBUG_PRINTF("GPIOB: %2x DIR: %2x", GPIOB_DATA, GPIOB_DIR);
64 _DEBUG_PRINTF("GPIOC: %2x DIR: %2x", GPIOC_DATA, GPIOC_DIR);
65 _DEBUG_PRINTF("GPIOD: %2x DIR: %2x", GPIOD_DATA, GPIOD_DIR);
66 #ifdef DEBUG_DBOP
67 line++;
68 _DEBUG_PRINTF("[DBOP_DIN]");
69 _DEBUG_PRINTF("DBOP_DIN: %4x", button_dbop_data());
70 #endif
71 lcd_update();
72 if (button_get_w_tmo(HZ/10) == (DEBUG_CANCEL|BUTTON_REL))
73 break;
75 lcd_setfont(FONT_UI);
76 return false;