1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006 by Greg White
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 ****************************************************************************/
41 #include "rbunicode.h"
44 #include "bitmaps/rockboxlogo.h"
48 #define LONG_DELAY 200000
49 #define SHORT_DELAY 50000
50 #define PAUSE_DELAY 50000
52 static inline void delay(int duration
)
55 for(i
=0;i
<duration
;i
++);
59 void bl_debug(bool bit
)
63 PDAT0
^= (1 << 2); //Toggle backlight
65 PDAT0
^= (1 << 2); //Toggle backlight
70 PDAT0
^= (1 << 2); //Toggle backlight
72 PDAT0
^= (1 << 2); //Toggle backlight
77 void bl_debug_count(unsigned int input
)
81 for (i
= 0; i
< input
; i
++)
83 PDAT0
^= (1 << 2); //Toggle backlight
85 PDAT0
^= (1 << 2); //Toggle backlight
89 void bl_debug_int(unsigned int input
,unsigned int count
)
92 for (i
= 0; i
< count
; i
++)
94 bl_debug(input
>>i
& 1);
101 //Set backlight pin to output and enable
103 PCON0
= ((oldval
& ~(3 << 4)) | (1 << 4));
108 PCON1
= ((oldval
& ~(0xf << 16)) | (0 << 16));
110 lcd_bitmap(rockboxlogo
, 0, 0, BMPWIDTH_rockboxlogo
, BMPHEIGHT_rockboxlogo
);
113 // Wait for play to be pressed
114 while(!(PDAT1
& (1 << 4)));
115 // Wait for play to be released
116 while((PDAT1
& (1 << 4)));
117 PDAT0
^= (1 << 2); //Toggle backlight