compiler warnings

ugfx_release_2.6
Tectu 2012-06-25 10:51:57 +02:00
parent 4bd671ed2e
commit f2cb8a0c53
2 changed files with 2 additions and 2 deletions

2
gui.c
View File

@ -75,7 +75,7 @@ void guiInit(uint16_t updateInterval) {
tp = chThdCreateFromHeap(NULL, THD_WA_SIZE(64), HIGHPRIO-1, TouchPadThread, updateInterval); tp = chThdCreateFromHeap(NULL, THD_WA_SIZE(64), HIGHPRIO-1, TouchPadThread, updateInterval);
} }
Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsigned char *str, uint16_t fontColor, uint16_t buttonColor, uint16_t interval, uint8_t *active, uint8_t *state) { Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, uint16_t interval, uint8_t *active, uint8_t *state) {
struct button_t *button; struct button_t *button;
Thread *tp = NULL; Thread *tp = NULL;

2
gui.h
View File

@ -57,7 +57,7 @@ void guiInit(uint16_t updateIntervl);
* *
* return: pointer to created thread * return: pointer to created thread
*/ */
Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsigned char *str, uint16_t fontColor, uint16_t buttonColor, uint16_t inverval, uint8_t *active, uint8_t *state); Thread *guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, char *str, uint16_t fontColor, uint16_t buttonColor, uint16_t inverval, uint8_t *active, uint8_t *state);
/* /*
* Description: draws a bar graph and updates it's value * Description: draws a bar graph and updates it's value