diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-11-22 21:15:49 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-11-22 21:15:49 +0100 |
commit | f82865b88b11a89d5b11cc58e85dd89943caf62e (patch) | |
tree | fa1431134482f4c83973f7016dbf6b010d2037de /drivers/gdisp | |
parent | 437134eb38877fbc2a88a74e8f866e8b9c78e3bc (diff) | |
download | uGFX-f82865b88b11a89d5b11cc58e85dd89943caf62e.tar.gz uGFX-f82865b88b11a89d5b11cc58e85dd89943caf62e.tar.bz2 uGFX-f82865b88b11a89d5b11cc58e85dd89943caf62e.zip |
SSD1289 firebull doc
Diffstat (limited to 'drivers/gdisp')
-rw-r--r-- | drivers/gdisp/SSD1289/gdisp_lld_board_firebullstm32f103.h | 8 |
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 */
}
/**
|