aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-10-05 02:32:35 +0200
committerJoel Bodenmann <joel@unormal.org>2013-10-05 02:32:35 +0200
commit8b6e95de7326382f75e1d1ee1069d39f774d5299 (patch)
tree4749ca582b05104389709b756efbf1087d7665c6 /src
parenta370394dbb0b5bf2ae1fbb2838b8b09956bfe38e (diff)
downloaduGFX-8b6e95de7326382f75e1d1ee1069d39f774d5299.tar.gz
uGFX-8b6e95de7326382f75e1d1ee1069d39f774d5299.tar.bz2
uGFX-8b6e95de7326382f75e1d1ee1069d39f774d5299.zip
added thread priorities to gfxconf.h
Diffstat (limited to 'src')
-rw-r--r--src/gdisp/gdisp.c2
-rw-r--r--src/gtimer/gtimer.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gdisp/gdisp.c b/src/gdisp/gdisp.c
index 22773908..54ab59a5 100644
--- a/src/gdisp/gdisp.c
+++ b/src/gdisp/gdisp.c
@@ -123,7 +123,7 @@
gfxMutexInit(&gdispMsgsMutex);
gfxSemInit(&gdispMsgsSem, GDISP_QUEUE_SIZE, GDISP_QUEUE_SIZE);
- hth = gfxThreadCreate(waGDISPThread, sizeof(waGDISPThread), NORMAL_PRIORITY, GDISPThreadHandler, NULL);
+ hth = gfxThreadCreate(waGDISPThread, sizeof(waGDISPThread), GDISP_PRIORITY, GDISPThreadHandler, NULL);
if (hth) gfxThreadClose(hth);
/* Initialise driver - synchronous */
diff --git a/src/gtimer/gtimer.c b/src/gtimer/gtimer.c
index e789ee74..25b7d804 100644
--- a/src/gtimer/gtimer.c
+++ b/src/gtimer/gtimer.c
@@ -132,7 +132,7 @@ void gtimerStart(GTimer *pt, GTimerFunction fn, void *param, bool_t periodic, de
// Start our thread if not already going
if (!hThread) {
- hThread = gfxThreadCreate(waTimerThread, sizeof(waTimerThread), HIGH_PRIORITY, GTimerThreadHandler, NULL);
+ hThread = gfxThreadCreate(waTimerThread, sizeof(waTimerThread), GTIMER_PRIORITY, GTimerThreadHandler, NULL);
if (hThread) gfxThreadClose(hThread); // We never really need the handle again
}