commit | 50509c34cc0ffb8323c415dc8723deb0de0e60af | [log] [tgz] |
---|---|---|
author | Martin Stumpf <finomnis@gmail.com> | Mon Nov 18 16:38:30 2024 +0100 |
committer | Anas Nashif <anas.nashif@intel.com> | Wed Nov 20 15:57:21 2024 -0500 |
tree | d20fbec683e3d9f183fae9838b92f227e338055b | |
parent | 0f1f01f9f41b6c8c06a4aacab95113f9055323d3 [diff] |
lvgl: Flush thread can have preemptive priority The LVGL flush thread was hard-coded to be cooperative. For long-running actions like data transfer to the display, this is problematic as it might block high-frequency actions like USB or input events. Hence, make it configurable to be preemptive, and rename it to match the similar Kconfig values like CONFIG_SDL_THREAD_PRIORITY. Signed-off-by: Martin Stumpf <finomnis@gmail.com>