Fixing issue in RTX5/CMSIS2 port

release/v2.9
Joel Bodenmann 2018-02-26 10:01:50 +01:00
parent d9eaba249f
commit 14786e97b6
2 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ FIX: Fixed compiler error in ST7735 driver
FIX: Added support for negative baseline_x in fonts
FIX: Fixed some word wrapping issues
FIX: Fixed drawing of 3x3 pixel boxes
FIX: Fixed issue in RTX5/CMSIS2 port which resulted in hanging delays/threads
*** Release 2.8 ***

View File

@ -61,7 +61,7 @@ extern "C" {
#define gfxExit() os_error(0)
#define gfxHalt(msg) os_error(1)
#define gfxSystemTicks() osKernelGetSysTimerCount()
#define gfxSystemTicks() osKernelGetTickCount()
#define gfxMillisecondsToTicks(ms) (1000*(ms)/osKernelGetTickFreq())
#define gfxSystemLock() osKernelLock()
#define gfxSystemUnlock() osKernelUnlock()