2013-05-01 23:53:28 +00:00
|
|
|
/*
|
2013-06-15 11:37:22 +00:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-03 14:36:17 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-05-03 14:36:17 +00:00
|
|
|
*/
|
2013-02-18 07:29:08 +00:00
|
|
|
|
|
|
|
/**
|
2013-07-21 15:42:25 +00:00
|
|
|
* @file drivers/gdisp/ILI9320/gdisp_lld_board_template.h
|
|
|
|
* @brief GDISP Graphic Driver subsystem board interface for the ILI9320 display.
|
2013-02-18 07:29:08 +00:00
|
|
|
*
|
|
|
|
* @addtogroup GDISP
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GDISP_LLD_BOARD_H
|
|
|
|
#define GDISP_LLD_BOARD_H
|
|
|
|
|
2013-03-04 22:50:21 +00:00
|
|
|
static inline void gdisp_lld_init_board(void) {
|
2013-07-21 15:42:25 +00:00
|
|
|
|
2013-02-18 07:29:08 +00:00
|
|
|
}
|
|
|
|
|
2013-03-04 22:50:21 +00:00
|
|
|
static inline void gdisp_lld_reset_pin(bool_t state) {
|
2013-07-21 15:42:25 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void acquire_bus(void) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void release_bus(void) {
|
|
|
|
|
2013-02-18 07:29:08 +00:00
|
|
|
}
|
|
|
|
|
2013-03-04 22:50:21 +00:00
|
|
|
static inline void gdisp_lld_write_index(uint16_t data) {
|
2013-07-21 15:42:25 +00:00
|
|
|
|
2013-02-18 07:29:08 +00:00
|
|
|
}
|
|
|
|
|
2013-03-04 22:50:21 +00:00
|
|
|
static inline void gdisp_lld_write_data(uint16_t data) {
|
2013-07-21 15:42:25 +00:00
|
|
|
|
2013-02-18 07:29:08 +00:00
|
|
|
}
|
|
|
|
|
2013-03-04 22:50:21 +00:00
|
|
|
static inline uint16_t gdisp_lld_read_data(void) {
|
2013-07-21 15:42:25 +00:00
|
|
|
|
2013-02-18 07:29:08 +00:00
|
|
|
}
|
|
|
|
|
2013-03-04 22:50:21 +00:00
|
|
|
static inline uint16_t gdisp_lld_backlight(uint8_t percentage) {
|
2013-07-21 15:42:25 +00:00
|
|
|
|
2013-02-18 07:29:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GDISP_LLD_BOARD_H */
|
|
|
|
/** @} */
|
|
|
|
|