2017-02-18 15:34:15 +00:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2018-10-01 15:32:39 +00:00
|
|
|
* http://ugfx.io/license.html
|
2017-02-18 15:34:15 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define SCREEN_WIDTH 800
|
|
|
|
#define SCREEN_HEIGHT 480
|
|
|
|
#define FRAMEREADER_BASE ALT_VIP_VFR_0_BASE
|
|
|
|
|
|
|
|
#if GDISP_NEED_CONTROL
|
2018-11-03 00:51:23 +00:00
|
|
|
static void board_backlight(GDisplay* g, gU8 percent)
|
2017-02-18 15:34:15 +00:00
|
|
|
{
|
|
|
|
(void) g;
|
|
|
|
(void) percent;
|
|
|
|
}
|
|
|
|
|
2018-11-03 00:51:23 +00:00
|
|
|
static void board_contrast(GDisplay* g, gU8 percent)
|
2017-02-18 15:34:15 +00:00
|
|
|
{
|
|
|
|
(void) g;
|
|
|
|
(void) percent;
|
|
|
|
}
|
|
|
|
|
2018-07-08 01:47:36 +00:00
|
|
|
static void board_power(GDisplay* g, gPowermode pwr)
|
2017-02-18 15:34:15 +00:00
|
|
|
{
|
|
|
|
(void) g;
|
|
|
|
(void) pwr;
|
|
|
|
}
|
|
|
|
#endif
|