Subversion Repositories freemyipod

Rev

Rev 427 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 427 Rev 489
Line 50... Line 50...
50
int lcd_get_bytes_per_pixel()
50
int lcd_get_bytes_per_pixel()
51
{
51
{
52
    return LCD_BYTESPERPIXEL;
52
    return LCD_BYTESPERPIXEL;
53
}
53
}
54
 
54
 
-
 
55
int lcd_get_format()
-
 
56
{
-
 
57
    return LCD_FORMAT;
-
 
58
}
-
 
59
 
55
static void lcd_send_cmd(uint16_t cmd)
60
static void lcd_send_cmd(uint16_t cmd)
56
{
61
{
57
    while (LCDSTATUS & 0x10);
62
    while (LCDSTATUS & 0x10);
58
    LCDWCMD = cmd;
63
    LCDWCMD = cmd;
59
}
64
}