fix: lvgl: modules: keypad input log module
Compilation error "undefined reference to log_const_lvgl" happened in lvgl_keypad_input.c when trying to get logs with lvgl keypad module. Fixed by adding log level parameter in log module macro. Signed-off-by: Eve Redero <eve.redero@gmail.com>
This commit is contained in:
parent
3e65c94d7a
commit
97fce09392
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
LOG_MODULE_DECLARE(lvgl);
|
||||
LOG_MODULE_DECLARE(lvgl, CONFIG_LV_Z_LOG_LEVEL);
|
||||
|
||||
struct lvgl_keypad_input_config {
|
||||
struct lvgl_common_input_config common_config; /* Needs to be first member */
|
||||
|
|
|
|||
Loading…
Reference in a new issue