aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/gos_cmsis.h
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@seriouslyembedded.com>2015-10-25 22:10:00 +0100
committerJoel Bodenmann <joel@seriouslyembedded.com>2015-10-25 22:10:00 +0100
commitccd83187fa1d762550be55bd4e582573169f97b1 (patch)
treed9d360f8238f4b9ff1a404716104dd0d7aa76a42 /src/gos/gos_cmsis.h
parent96a912bbc0559924dfc89bfb3e57f4e109392c9d (diff)
downloaduGFX-ccd83187fa1d762550be55bd4e582573169f97b1.tar.gz
uGFX-ccd83187fa1d762550be55bd4e582573169f97b1.tar.bz2
uGFX-ccd83187fa1d762550be55bd4e582573169f97b1.zip
Fixing Mutex and Semaphores for CMSIS RTOS
Diffstat (limited to 'src/gos/gos_cmsis.h')
-rw-r--r--src/gos/gos_cmsis.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gos/gos_cmsis.h b/src/gos/gos_cmsis.h
index a0833c07..d263feb6 100644
--- a/src/gos/gos_cmsis.h
+++ b/src/gos/gos_cmsis.h
@@ -42,12 +42,12 @@ typedef osPriority threadpriority_t;
#define HIGH_PRIORITY osPriorityHigh
typedef struct gfxSem {
- osSemaphoreDef_t def;
+ uint32_t semaphore[2];
osSemaphoreId id;
} gfxSem;
typedef struct gfxMutex {
- osMutexDef_t def;
+ uint32_t mutex[4];
osMutexId id;
} gfxMutex;