-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Reduce the stack usage in log function #2649
Conversation
Shouldn't lv_log.c be also updated? |
Yes, it's in the next PR. I can't add it in this PR because MicroPython CI complain lv_format_t can't be found. I guess that CI can't support the dependent patches in one PR? |
CI should handle if a problem is fixed in a new commit because it always runs on the last commit. Please, push it here to see what happens. |
OK, let's what happen now. |
Here is the error(https://github.com/lvgl/lvgl/pull/2649/checks?check_run_id=3859062425):
|
It fails because the Micropython binding comes with So |
Ok, look like I need find a better solution to support both case. |
7717650
to
0e5f3be
Compare
@kisvegabor @embeddedt could you review this PR which:
|
This reverts commit 539388a.
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
to support the recursive print: https://www.kernel.org/doc/html/latest/core-api/printk-formats.html Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
Merging, thanks! |
Description of the feature or fix
Checkpoints