LV_LOG_WARN("It seems lv_tick_inc() is not called."); } }/*Run all timer from the list*/ lv_timer_t * next; do {0 comments on commit aa6641a Please sign in to comment. Footer © 2024 GitHub, Inc. Footer navigation Terms Privacy Security Status Docs Contact Manage...
lv_tick_incexpects the parameter to be passed in milliseconds. You should useusleep(5*1000)to sleep for 5 milliseconds, not 50 microseconds. It's a good idea to uselv_tick_incin a timer, but how you implement that is specific to your platform (i.e. PC simulator, STM32). ...