32 lines
517 B
C
32 lines
517 B
C
/*
|
|
* display.h
|
|
*
|
|
* Created on: Jun 9, 2018
|
|
* Author: kidsr
|
|
*/
|
|
|
|
|
|
#ifndef SRC_DISPLAY_GRAPHIC_LCD_DISPLAY_H_
|
|
#define SRC_DISPLAY_GRAPHIC_LCD_DISPLAY_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "debug.h"
|
|
|
|
#define DISPLAY_TAG "Display driver"
|
|
|
|
typedef struct display {
|
|
int height;
|
|
int width;
|
|
uint8_t backlight[3];
|
|
int (*init)(void*);
|
|
int (*quit)(void);
|
|
int (*update)(void);
|
|
unsigned char *output_buffer;
|
|
}DISPLAY;
|
|
|
|
DISPLAY pipe_fifo;
|
|
DISPLAY disp_MatrixOrbitalGX;
|
|
|
|
#endif /* SRC_DISPLAY_GRAPHIC_LCD_DISPLAY_H_ */
|