13 lines
185 B
C
13 lines
185 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_draw_image(const uint16_t *image);
|
|
|
|
#endif
|