diff options
author | Tectu <joel@unormal.org> | 2012-06-25 10:52:52 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-25 10:52:52 +0200 |
commit | 192282d6aff3a7fbe7c73e7c181d62955586bbce (patch) | |
tree | 21548c43172d00b34cf63b5c29d13f5ddd5d1036 | |
parent | f2cb8a0c5310430a88c3392f8f7b8048da97dbc5 (diff) | |
download | uGFX-192282d6aff3a7fbe7c73e7c181d62955586bbce.tar.gz uGFX-192282d6aff3a7fbe7c73e7c181d62955586bbce.tar.bz2 uGFX-192282d6aff3a7fbe7c73e7c181d62955586bbce.zip |
guiInit() returns pointer to created thread
-rw-r--r-- | gui.c | 4 | ||||
-rw-r--r-- | gui.h | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -70,9 +70,11 @@ static void barThread(struct bar_t *a) { } } -void guiInit(uint16_t updateInterval) { +Thread *guiInit(uint16_t updateInterval) { Thread *tp = NULL; tp = chThdCreateFromHeap(NULL, THD_WA_SIZE(64), HIGHPRIO-1, TouchPadThread, updateInterval); + + return tp; } 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) { @@ -39,9 +39,9 @@ extern "C" { * param: * - updateInterval: update interval in milliseconds until next coordinates read-out * - * return: none + * return: pointer to created thread */ -void guiInit(uint16_t updateIntervl); +Thread *guiInit(uint16_t updateIntervl); /* * Description: draws button and creates thread which keeps pressed/unpressed state up-to-date |