This commit is contained in:
Zaltora
2018-01-15 11:13:16 +01:00
parent 6c06bfbf41
commit 0fe5a3ba5e
2 changed files with 2 additions and 2 deletions

View File

@@ -92,7 +92,7 @@
/*Compiler attributes*/
#define LV_ATTRIBUTE_TICK_INC /* Define a custom attribute to tick increment function */
#define LV_ATTRIBUTE_TASK_HANDLE /* Define a custom attribute to task handle function */
#define LV_ATTRIBUTE_TASK_HANDLER /* Define a custom attribute to task handler function */
/*================
* THEME USAGE

View File

@@ -55,7 +55,7 @@ void lv_task_init(void)
/**
* Call it periodically to handle lv_tasks.
*/
inline void LV_ATTRIBUTE_TASK_HANDLE lv_task_handler(void)
inline void LV_ATTRIBUTE_TASK_HANDLER lv_task_handler(void)
{
static uint32_t idle_period_start = 0;
static uint32_t handler_start = 0;