ugfx/drivers/gdisp/HX8347D/gdisp_lld_board_template.h

110 lines
1.8 KiB
C
Raw Normal View History

2013-07-21 15:42:25 +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:
*
2013-07-21 20:20:37 +00:00
* http://ugfx.org/license.html
2013-07-21 15:42:25 +00:00
*/
/**
* @file drivers/gdisp/HX8347D/gdisp_lld_board_template.h
* @brief GDISP Graphic Driver subsystem board SPI interface for the HX8347D display.
*
* @addtogroup GDISP
* @{
*/
#ifndef _GDISP_LLD_BOARD_H
#define _GDISP_LLD_BOARD_H
/**
* @brief Initialise the board for the display.
* @notapi
*/
static inline void init_board(void) {
}
/**
* @brief Set or clear the lcd reset pin.
*
* @param[in] state TRUE = lcd in reset, FALSE = normal operation
*
* @notapi
*/
static inline void setpin_reset(bool_t state) {
}
/**
* @brief Set the lcd back-light level.
*
* @param[in] percent 0 to 100%
*
* @notapi
*/
static inline void set_backlight(uint8_t percent) {
}
/**
* @brief Take exclusive control of the bus
* @notapi
*/
static inline void acquire_bus(void) {
}
/**
* @brief Release exclusive control of the bus
* @notapi
*/
static inline void release_bus(void) {
}
/**
* @brief Set the bus in 16 bit mode
2013-07-21 15:42:25 +00:00
* @notapi
*/
static inline void busmode16(void) {
2013-07-21 15:42:25 +00:00
}
/**
* @brief Set the bus in 8 bit mode (the default)
2013-07-21 15:42:25 +00:00
* @notapi
*/
static inline void busmode8(void) {
2013-07-21 15:42:25 +00:00
}
/**
* @brief Set which index register to use.
*
* @param[in] index The index register to set
*
* @notapi
*/
static inline void write_index(uint8_t cmd) {
2013-07-21 15:42:25 +00:00
}
/**
* @brief Send a command to the lcd.
2013-07-21 15:42:25 +00:00
*
* @param[in] data The data to send
2013-07-21 15:42:25 +00:00
*
* @notapi
*/
static inline void write_reg(uint8_t cmd, uint8_t data) {
}
static inline void write_ram16(uint16_t data) {
2013-07-21 15:42:25 +00:00
}
#endif /* _GDISP_LLD_BOARD_H */
/** @} */