-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed build error in case of FreeRtos configuration #73
base: master
Are you sure you want to change the base?
Conversation
incorrectly specified freeRTOS library. In case of freetos configuration the lv_init() function shall be called in a task contxt.
Hello there. Please review this PR. Regards. |
Sorry for the delay. @liamHowatt, @uLipe can you take a look at this PR? |
Hi @psanyi, thank you! It builds for me. I'm seeing an issue where it crashes at If this PR works for anyone else I'm inclined to say let's merge it. |
In some cases the stack size for the lvgl task must be increased (depends on lvgl memory usage). Please have a look here: |
Aha thanks. We should definitely change that value, either in this PR or another. Next, I have the exact same problem as @MarcoGit82 here #62 (comment). Do you have this problem too? If so, how do you deal with it? Their solution is to not let LVGL use FreeRTOS internally. Maybe there's an issue with LVGL's FreeRTOS usage. |
Fixed compilation error in CMakeLists.txt due to
incorrectly specified freeRTOS library.
In case of freetos configuration the lv_init() function shall be called
in a task context.