aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp/ILI9325/gdisp_lld_board_template.h
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2013-09-30 17:05:06 +1000
committerinmarket <andrewh@inmarket.com.au>2013-09-30 17:05:06 +1000
commit7d95523946fe5bdacc6f92a2bad715f0bc492920 (patch)
treeaa799ffe6a69f0dbf0444b6cb25c09c6cbbac7f7 /drivers/gdisp/ILI9325/gdisp_lld_board_template.h
parentc132a5bb8ada70bc0a77832033ee6fd68293ceea (diff)
downloaduGFX-7d95523946fe5bdacc6f92a2bad715f0bc492920.tar.gz
uGFX-7d95523946fe5bdacc6f92a2bad715f0bc492920.tar.bz2
uGFX-7d95523946fe5bdacc6f92a2bad715f0bc492920.zip
ILI9325 driver ported to streaming interface
Diffstat (limited to 'drivers/gdisp/ILI9325/gdisp_lld_board_template.h')
-rw-r--r--drivers/gdisp/ILI9325/gdisp_lld_board_template.h90
1 files changed, 84 insertions, 6 deletions
diff --git a/drivers/gdisp/ILI9325/gdisp_lld_board_template.h b/drivers/gdisp/ILI9325/gdisp_lld_board_template.h
index 2dd346a3..c07b4ba1 100644
--- a/drivers/gdisp/ILI9325/gdisp_lld_board_template.h
+++ b/drivers/gdisp/ILI9325/gdisp_lld_board_template.h
@@ -16,27 +16,105 @@
#ifndef GDISP_LLD_BOARD_H
#define GDISP_LLD_BOARD_H
-static inline void gdisp_lld_init_board(void) {
+/**
+ * @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) {
}
-static inline void gdisp_lld_reset_pin(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) {
}
-static inline void gdisp_lld_write_index(uint16_t data) {
+/**
+ * @brief Take exclusive control of the bus
+ *
+ * @notapi
+ */
+static inline void acquire_bus(void) {
}
-static inline void gdisp_lld_write_data(uint16_t data) {
+/**
+ * @brief Release exclusive control of the bus
+ *
+ * @notapi
+ */
+static inline void release_bus(void) {
}
-static inline uint16_t gdisp_lld_read_data(void) {
+/**
+ * @brief Send data to the index register.
+ *
+ * @param[in] index The index register to set
+ *
+ * @notapi
+ */
+static inline void write_index(uint16_t index) {
}
-static inline uint16_t gdisp_lld_backlight(uint8_t percentage) {
+/**
+ * @brief Send data to the lcd.
+ *
+ * @param[in] data The data to send
+ *
+ * @notapi
+ */
+static inline void write_data(uint16_t data) {
+
+}
+
+/**
+ * @brief Set the bus in read mode
+ *
+ * @notapi
+ */
+static inline void setreadmode(void) {
+
+}
+
+/**
+ * @brief Set the bus back into write mode
+ *
+ * @notapi
+ */
+static inline void setwritemode(void) {
+
+}
+
+/**
+ * @brief Read data from the lcd.
+ *
+ * @return The data from the lcd
+ * @note The chip select may need to be asserted/de-asserted
+ * around the actual spi read
+ *
+ * @notapi
+ */
+static inline uint16_t read_data(void) {
}