ugfx/drivers/gdisp/LGDP4532/board_LGDP4532_template.h

72 lines
1.1 KiB
C
Raw Normal View History

2014-04-17 21:06:45 +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
2014-04-17 21:06:45 +00:00
*/
#ifndef GDISP_LLD_BOARD_H
#define GDISP_LLD_BOARD_H
static GFXINLINE void init_board(GDisplay *g)
2014-04-17 21:06:45 +00:00
{
(void) g;
}
static GFXINLINE void post_init_board(GDisplay *g)
2014-04-17 21:06:45 +00:00
{
(void) g;
}
static GFXINLINE void setpin_reset(GDisplay *g, gBool state)
2014-04-17 21:06:45 +00:00
{
(void) g;
(void) state;
}
static GFXINLINE void set_backlight(GDisplay *g, gU8 percent)
2014-04-17 21:06:45 +00:00
{
(void) g;
(void) percent;
}
static GFXINLINE void acquire_bus(GDisplay *g)
2014-04-17 21:06:45 +00:00
{
(void) g;
}
static GFXINLINE void release_bus(GDisplay *g)
2014-04-17 21:06:45 +00:00
{
(void) g;
}
static GFXINLINE void write_index(GDisplay *g, gU16 index)
2014-04-17 21:06:45 +00:00
{
(void) g;
(void) index;
}
static GFXINLINE void write_data(GDisplay *g, gU16 data)
2014-04-17 21:06:45 +00:00
{
(void) g;
(void) data;
}
static GFXINLINE void setreadmode(GDisplay *g)
2014-04-17 21:06:45 +00:00
{
(void) g;
}
static GFXINLINE void setwritemode(GDisplay *g)
2014-04-17 21:06:45 +00:00
{
(void) g;
}
static GFXINLINE gU16 read_data(GDisplay *g)
2014-04-17 21:06:45 +00:00
{
(void) g;
return 0;
}
#endif /* GDISP_LLD_BOARD_H */