Add LCD type to iPod Classic HW debug screen

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28992 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sparmann 2011-01-07 15:30:30 +00:00
parent 46945eff06
commit e8e6a3c873

View file

@ -36,6 +36,7 @@
#define _DEBUG_PRINTF(a, varargs...) lcd_putsf(0, line++, (a), ##varargs);
extern int lcd_type;
bool __dbg_hw_info(void)
{
int line;
@ -57,6 +58,9 @@ bool __dbg_hw_info(void)
_DEBUG_PRINTF("CPU:");
_DEBUG_PRINTF("current_tick: %d", (unsigned int)current_tick);
line++;
_DEBUG_PRINTF("LCD type: %d", lcd_type);
line++;
}
else if(state==1)
{