16 lines
331 B
C
16 lines
331 B
C
#ifndef LCD_REG_H
|
|
#define LCD_REG_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define LCD_WIDTH 320
|
|
#define LCD_HEIGHT 240
|
|
|
|
void lcd_reg_init(void);
|
|
void lcd_reg_restore(void);
|
|
void lcd_set_window(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1);
|
|
void lcd_write_pixels(const void *data, uint32_t length);
|
|
void lcd_delay_ms(uint32_t ms);
|
|
|
|
#endif
|