BigW Consortium Gitlab

Commit d068c85e by Gabor Kiss-Vamosi

minor updates on LV_ATTRIBUTE_...

parent 145ea416
......@@ -40,7 +40,7 @@ static volatile uint8_t tick_irq_flag;
* You have to call this function periodically
* @param tick_period the call period of this function in milliseconds
*/
inline void LV_ATTRIBUTE_TICK_INC lv_tick_inc(uint32_t tick_period)
LV_ATTRIBUTE_TICK_INC void lv_tick_inc(uint32_t tick_period)
{
tick_irq_flag = 0;
sys_time += tick_period;
......
......@@ -35,7 +35,7 @@ extern "C" {
* You have to call this function periodically
* @param tick_period the call period of this function in milliseconds
*/
void lv_tick_inc(uint32_t tick_period);
LV_ATTRIBUTE_TICK_INC void lv_tick_inc(uint32_t tick_period);
/**
* Get the elapsed milliseconds since start up
......
......@@ -55,7 +55,7 @@ void lv_task_init(void)
/**
* Call it periodically to handle lv_tasks.
*/
inline void LV_ATTRIBUTE_TASK_HANDLER lv_task_handler(void)
LV_ATTRIBUTE_TASK_HANDLER void lv_task_handler(void)
{
static uint32_t idle_period_start = 0;
static uint32_t handler_start = 0;
......
......@@ -67,7 +67,7 @@ void lv_task_init(void);
/**
* Call it periodically to handle lv_tasks.
*/
void lv_task_handler(void);
LV_ATTRIBUTE_TASK_HANDLER void lv_task_handler(void);
/**
* Create a new lv_task
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment