ugfx_release_2.6
Tectu 2012-07-23 03:43:11 +02:00
parent 586468a7c9
commit a9d5837f40
2 changed files with 4 additions and 4 deletions

View File

@ -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);

View File

@ -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");