diff options
author | Tectu <joel@unormal.org> | 2012-06-07 14:37:29 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-06-07 14:37:29 +0200 |
commit | 9ccab0c20744cb832197e8da5e0005ee4d4ae15d (patch) | |
tree | d3e2c9f9030a5b961d9007ec2a6c36e821cd335c /gui.c | |
parent | 8cafee2c32c0961d0e1afeba4983109d6655a7c9 (diff) | |
download | uGFX-9ccab0c20744cb832197e8da5e0005ee4d4ae15d.tar.gz uGFX-9ccab0c20744cb832197e8da5e0005ee4d4ae15d.tar.bz2 uGFX-9ccab0c20744cb832197e8da5e0005ee4d4ae15d.zip |
cleanups
Diffstat (limited to 'gui.c')
-rw-r--r-- | gui.c | 40 |
1 files changed, 40 insertions, 0 deletions
@@ -0,0 +1,40 @@ +#include "ch.h" +#include "hal.h" +#include "gui.h" +#include "glcd.h" +#include "touchpad.h" + +volatile uint16_t x, y; + +static WORKING_AREA(waTouchPadThread, 512); +static msg_t TouchPadThread(void *arg) { + (void)arg; + unsigned char buffer[10]; + chRegSetThreadName("GUI"); + + while(TRUE) { + if(tpIRQ()) { + x = tpReadX(); + y = tpReadY(); + + lcdFillArea(10, 10, 80, 80, Black); + sprintf(buffer, "X: %d", x); + lcdDrawString(10, 10, buffer, White, Black); + sprintf(buffer, "Y: %d", y); + lcdDrawString(10, 25, buffer, White, Black); + } + + chThdSleepMilliseconds(10); + } +} + + +void guiInit(void) { + chThdCreateStatic(TouchPadThread, sizeof(TouchPadThread), HIGHPRIO, TouchPadThread, NULL); +} + +void guiDrawButton(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1, unsigned char *str, uint16_t fontColor, uint16_t buttonColor, uint8_t *state) { + lcdDrawRectString(x0, y0, x1, y1, str, fontColor, buttonColor); + +} + |