Redo some parts of my previous commit, thanks Jens and Dave
[kugel-rb.git] / firmware / target / arm / as3525 / debug-as3525.c
bloba388f12601cd7bfec9ea63b8649d608ab8663d92
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 /* TODO */
36 bool __dbg_hw_info(void)
38 return false;
41 bool __dbg_ports(void)
43 char buf[50];
44 int line;
46 lcd_clear_display();
47 lcd_setfont(FONT_SYSFIXED);
49 while(1)
51 line = 0;
52 _DEBUG_PRINTF("[GPIO Values and Directions]");
53 _DEBUG_PRINTF("GPIOA: %2x DIR: %2x", GPIOA_DATA, GPIOA_DIR);
54 _DEBUG_PRINTF("GPIOB: %2x DIR: %2x", GPIOB_DATA, GPIOB_DIR);
55 _DEBUG_PRINTF("GPIOC: %2x DIR: %2x", GPIOC_DATA, GPIOC_DIR);
56 _DEBUG_PRINTF("GPIOD: %2x DIR: %2x", GPIOD_DATA, GPIOD_DIR);
57 #ifdef TRACK_DBOP_DIN
58 line++;
59 _DEBUG_PRINTF("[DBOP_DIN]");
60 _DEBUG_PRINTF("DBOP_DIN: %4x", _dbop_din);
61 #endif
62 lcd_update();
63 if (button_get_w_tmo(HZ/10) == (DEBUG_CANCEL|BUTTON_REL))
64 break;
66 lcd_setfont(FONT_UI);
67 return false;