SSD1289 firebull doc

ugfx_release_2.6
Joel Bodenmann 2012-11-22 21:15:49 +01:00
parent 437134eb38
commit f82865b88b
1 changed files with 4 additions and 4 deletions

View File

@ -68,7 +68,7 @@ static __inline void init_board(void) {
*/ */
static __inline void setpin_reset(bool_t state) { static __inline void setpin_reset(bool_t state) {
(void) 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) { static __inline void set_backlight(uint8_t percent) {
(void) 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 * @notapi
*/ */
static __inline void acquire_bus(void) { 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 * @notapi
*/ */
static __inline void release_bus(void) { static __inline void release_bus(void) {
/* Nothing to do here */ /* Nothing to do here since LCD is the only device on that bus */
} }
/** /**