add examples folder with arduio examples and move porting folder there

This commit is contained in:
Gabor Kiss-Vamosi
2020-06-28 20:37:32 +02:00
parent d0db0bab5c
commit 069e24bdb2
12 changed files with 204 additions and 14 deletions

View File

@@ -391,10 +391,10 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h" */
#endif
#if LV_TICK_CUSTOM == 1
#ifndef LV_TICK_CUSTOM_INCLUDE
#define LV_TICK_CUSTOM_INCLUDE "something.h" /*Header for the sys time function*/
#define LV_TICK_CUSTOM_INCLUDE "Arduino.h" /*Header for the sys time function*/
#endif
#ifndef LV_TICK_CUSTOM_SYS_TIME_EXPR
#define LV_TICK_CUSTOM_SYS_TIME_EXPR (millis()) /*Expression evaluating to current systime in ms*/
#define LV_TICK_CUSTOM_SYS_TIME_EXPR (millis()) /*Expression evaluating to current sys time in ms*/
#endif
#endif /*LV_TICK_CUSTOM*/