hpemung/src/display.h

25 lines
453 B
C
Raw Normal View History

2023-05-11 16:43:32 +02:00
#ifndef __DISPLAY_H
#define __DISPLAY_H
#include <stdlib.h>
2024-04-14 22:02:32 +02:00
#include <stdbool.h>
2023-10-03 16:20:40 +02:00
2023-05-11 16:43:32 +02:00
#include "types.h"
#define LCD_WIDTH 131
#define LCD_HEIGHT 64
2023-05-11 16:43:32 +02:00
extern address menu_base;
extern address display_base;
extern address display_line_offset;
extern byte display_line_count;
extern byte display_height;
extern byte display_offset;
2023-10-03 14:06:40 +02:00
extern bool display_enable;
extern bool shouldRender;
extern byte lcdScreenGS[];
2023-05-11 16:43:32 +02:00
2023-10-03 16:20:40 +02:00
extern void display_update( void );
2023-05-11 16:43:32 +02:00
#endif