cleanup
This commit is contained in:
parent
586468a7c9
commit
a9d5837f40
2 changed files with 4 additions and 4 deletions
|
@ -105,11 +105,11 @@ __inline void lld_lcdReadStream(uint16_t *buffer, size_t size) {
|
|||
buffer[i] = lld_lcdReadData();
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // LCD_USE_GPIO
|
||||
|
||||
#ifdef LCD_USE_SPI
|
||||
/* TODO */
|
||||
#endif
|
||||
#endif // LCD_USE_SPI
|
||||
|
||||
#ifdef LCD_USE_FSMC
|
||||
|
||||
|
@ -170,7 +170,7 @@ __inline void lld_lcdReadStream(uint16_t *buffer, size_t size) {
|
|||
buffer[i] = LCD_RAM;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#endif // LCD_USE_FSMC
|
||||
|
||||
static __inline void lld_lcdDelay(uint16_t us) {
|
||||
chThdSleepMicroseconds(us);
|
||||
|
|
|
@ -11,7 +11,7 @@ static WORKING_AREA(waGLCDWorkerThread, GLCD_WORKER_SIZE);
|
|||
static msg_t ThreadGLCDWorker(void *arg) {
|
||||
(void)arg;
|
||||
Thread *p;
|
||||
uint16_t ret;
|
||||
uint16_t ret; // return value
|
||||
|
||||
chRegSetThreadName("GLCDWorker");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue