Update to LVGL master (unl0kr)

This commit is contained in:
Johannes Marbach 2024-01-25 09:59:45 +00:00
parent db906419e8
commit f41d3d3130
18 changed files with 326 additions and 293 deletions

View file

@ -42,6 +42,7 @@ void ul_log(ul_log_level level, const char *format, ...) {
}
}
void ul_log_print_cb(const char *msg) {
void ul_log_print_cb(lv_log_level_t level, const char *msg) {
LV_UNUSED(level);
ul_log(UL_LOG_LEVEL_VERBOSE, msg);
}