Skip to content
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

fix(nuttx): fix build break #6732

Merged
merged 1 commit into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(nuttx): fix build break
Signed-off-by: Neo Xu <neo.xu1990@gmail.com>
  • Loading branch information
XuNeo committed Aug 25, 2024
commit 4ef1ae3174005079a0c778291076328b7a3b44e3
1 change: 1 addition & 0 deletions src/drivers/nuttx/lv_nuttx_entry.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include <pthread.h>
#include "lv_nuttx_cache.h"
#include "lv_nuttx_image_cache.h"
#include "../../core/lv_global.h"
#include "lv_nuttx_profiler.h"

#include "../../../lvgl.h"
Expand Down
3 changes: 2 additions & 1 deletion src/drivers/nuttx/lv_nuttx_image_cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
*********************/

#include "lv_nuttx_image_cache.h"
#include "../../core/lv_global.h"
#include "../../../lvgl.h"

#if LV_USE_NUTTX

#include "../../lv_draw_buf_private.h"
#include "../../draw/lv_draw_buf_private.h"
#include <nuttx/mm/mm.h>

/*********************
Expand Down
Loading