aboutsummaryrefslogtreecommitdiffstats
path: root/boards/base/STM32F469i-Discovery/stm32f469i_raw32_ugfx.c
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-07-08 14:30:31 +1000
committerinmarket <andrewh@inmarket.com.au>2018-07-08 14:30:31 +1000
commit215f31ee3dd27f461540384cdba04b58b481fadc (patch)
tree1a100121d47819202187914dc4a321cfb7030351 /boards/base/STM32F469i-Discovery/stm32f469i_raw32_ugfx.c
parente23ae94e91369501df310bc3afd4ab711d263cab (diff)
downloaduGFX-215f31ee3dd27f461540384cdba04b58b481fadc.tar.gz
uGFX-215f31ee3dd27f461540384cdba04b58b481fadc.tar.bz2
uGFX-215f31ee3dd27f461540384cdba04b58b481fadc.zip
Added type gDelay to replace V2.x delaytime_t
Added type gTicks to replace V2.x systemticks_t Added type gThreadreturn to replace V2.x threadreturn_t Added type gThreadpriority to replace V2.x threadpriority_t
Diffstat (limited to 'boards/base/STM32F469i-Discovery/stm32f469i_raw32_ugfx.c')
-rw-r--r--boards/base/STM32F469i-Discovery/stm32f469i_raw32_ugfx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/boards/base/STM32F469i-Discovery/stm32f469i_raw32_ugfx.c b/boards/base/STM32F469i-Discovery/stm32f469i_raw32_ugfx.c
index 35b7a5e3..4c1940ec 100644
--- a/boards/base/STM32F469i-Discovery/stm32f469i_raw32_ugfx.c
+++ b/boards/base/STM32F469i-Discovery/stm32f469i_raw32_ugfx.c
@@ -8,12 +8,12 @@
#include "stm32f4xx_hal.h"
#if !GFX_USE_OS_CHIBIOS
- systemticks_t gfxSystemTicks(void)
+ gTicks gfxSystemTicks(void)
{
return HAL_GetTick();
}
- systemticks_t gfxMillisecondsToTicks(delaytime_t ms)
+ gTicks gfxMillisecondsToTicks(gDelay ms)
{
return ms;
}