summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorMichael Sparmann <theseven@rockbox.org>2011-01-07 15:30:30 +0000
committerMichael Sparmann <theseven@rockbox.org>2011-01-07 15:30:30 +0000
commite8e6a3c873136e2ab8143009340b93a553b79727 (patch)
tree46c4031686fd4586cd9fdd3ff6ddf684d3d366ce /firmware
parent46945eff06e32316b2658e57d2aea5cbb42ebae6 (diff)
downloadrockbox-e8e6a3c873136e2ab8143009340b93a553b79727.tar.gz
rockbox-e8e6a3c873136e2ab8143009340b93a553b79727.zip
Add LCD type to iPod Classic HW debug screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28992 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/arm/s5l8702/debug-s5l8702.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/target/arm/s5l8702/debug-s5l8702.c b/firmware/target/arm/s5l8702/debug-s5l8702.c
index 471eae8acd..a84eec722a 100644
--- a/firmware/target/arm/s5l8702/debug-s5l8702.c
+++ b/firmware/target/arm/s5l8702/debug-s5l8702.c
@@ -36,6 +36,7 @@
36 36
37#define _DEBUG_PRINTF(a, varargs...) lcd_putsf(0, line++, (a), ##varargs); 37#define _DEBUG_PRINTF(a, varargs...) lcd_putsf(0, line++, (a), ##varargs);
38 38
39extern int lcd_type;
39bool __dbg_hw_info(void) 40bool __dbg_hw_info(void)
40{ 41{
41 int line; 42 int line;
@@ -57,6 +58,9 @@ bool __dbg_hw_info(void)
57 _DEBUG_PRINTF("CPU:"); 58 _DEBUG_PRINTF("CPU:");
58 _DEBUG_PRINTF("current_tick: %d", (unsigned int)current_tick); 59 _DEBUG_PRINTF("current_tick: %d", (unsigned int)current_tick);
59 line++; 60 line++;
61
62 _DEBUG_PRINTF("LCD type: %d", lcd_type);
63 line++;
60 } 64 }
61 else if(state==1) 65 else if(state==1)
62 { 66 {