Subversion Repositories freemyipod

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
881 theseven 1
#ifndef __BOARD_IPODNANO2G_LCD_H__
2
#define __BOARD_IPODNANO2G_LCD_H__
3
 
4
#include "global.h"
5
#include "interface/lcd/lcd.h"
6
#include "interface/lcdif/lcdif.h"
7
#include "interface/backlight_manager/backlight_manager.h"
8
 
9
 
10
struct __attribute__((packed,aligned(4))) ipodnano2g_lcd_config
11
{
12
    const struct lcdif_instance* interface;
13
    const struct backlight_manager_instance* backlight;
14
};
15
 
16
struct __attribute__((packed,aligned(4))) ipodnano2g_lcd_state
17
{
18
};
19
 
20
extern const struct lcd_driver ipodnano2g_lcd_driver;
21
 
22
 
23
#endif