aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2012-11-22 21:15:49 +0100
committerJoel Bodenmann <joel@unormal.org>2012-11-22 21:15:49 +0100
commitf82865b88b11a89d5b11cc58e85dd89943caf62e (patch)
treefa1431134482f4c83973f7016dbf6b010d2037de /drivers
parent437134eb38877fbc2a88a74e8f866e8b9c78e3bc (diff)
downloaduGFX-f82865b88b11a89d5b11cc58e85dd89943caf62e.tar.gz
uGFX-f82865b88b11a89d5b11cc58e85dd89943caf62e.tar.bz2
uGFX-f82865b88b11a89d5b11cc58e85dd89943caf62e.zip
SSD1289 firebull doc
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gdisp/SSD1289/gdisp_lld_board_firebullstm32f103.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gdisp/SSD1289/gdisp_lld_board_firebullstm32f103.h b/drivers/gdisp/SSD1289/gdisp_lld_board_firebullstm32f103.h
index 8d953aa8..07cdfa12 100644
--- a/drivers/gdisp/SSD1289/gdisp_lld_board_firebullstm32f103.h
+++ b/drivers/gdisp/SSD1289/gdisp_lld_board_firebullstm32f103.h
@@ -68,7 +68,7 @@ static __inline void init_board(void) {
*/
static __inline void setpin_reset(bool_t state) {
(void) state;
- /* Nothing to do here */
+ /* Nothing to do here - reset pin tied to Vcc */
}
/**
@@ -80,7 +80,7 @@ static __inline void setpin_reset(bool_t state) {
*/
static __inline void set_backlight(uint8_t percent) {
(void) percent;
- /* Nothing to do here */
+ /* Nothing to do here - Backlight always on */
}
/**
@@ -89,7 +89,7 @@ static __inline void set_backlight(uint8_t percent) {
* @notapi
*/
static __inline void acquire_bus(void) {
- /* Nothing to do here */
+ /* Nothing to do here since LCD is the only device on that bus */
}
/**
@@ -98,7 +98,7 @@ static __inline void acquire_bus(void) {
* @notapi
*/
static __inline void release_bus(void) {
- /* Nothing to do here */
+ /* Nothing to do here since LCD is the only device on that bus */
}
/**