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