Subversion Repositories freemyipod

Rev

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

Rev 242 Rev 243
Line 26... Line 26...
26
 
26
 
27
 
27
 
28
#include "global.h"
28
#include "global.h"
29
#include "drawing.h"
29
#include "drawing.h"
30
#include "lcd.h"
30
#include "lcd.h"
31
#include "progressbar.h"
-
 
32
 
31
 
33
 
32
 
34
#define LCDCONSOLE_COLS (LCD_WIDTH / FONT_WIDTH)
33
#define LCDCONSOLE_COLS (LCD_WIDTH / FONT_WIDTH)
35
#define LCDCONSOLE_ROWS (LCD_HEIGHT / FONT_HEIGHT)
34
#define LCDCONSOLE_ROWS (LCD_HEIGHT / FONT_HEIGHT)
36
#define LCDCONSOLE_OFFSETX ((LCD_WIDTH - LCDCONSOLE_COLS * FONT_WIDTH) / 2)
35
#define LCDCONSOLE_OFFSETX ((LCD_WIDTH - LCDCONSOLE_COLS * FONT_WIDTH) / 2)
Line 48... Line 47...
48
void lcdconsole_callback() ICODE_ATTR;
47
void lcdconsole_callback() ICODE_ATTR;
49
int lcdconsole_get_current_x() ICODE_ATTR;
48
int lcdconsole_get_current_x() ICODE_ATTR;
50
int lcdconsole_get_current_y() ICODE_ATTR;
49
int lcdconsole_get_current_y() ICODE_ATTR;
51
int lcdconsole_get_lineend_x() ICODE_ATTR;
50
int lcdconsole_get_lineend_x() ICODE_ATTR;
52
int lcdconsole_get_lineend_y() ICODE_ATTR;
51
int lcdconsole_get_lineend_y() ICODE_ATTR;
53
void lcdconsole_progressbar(struct progressbar_state* progressbar, int min, int max);
-
 
54
 
52
 
55
 
53
 
56
#endif
54
#endif