perf: Enable 512KB LVGL image cache on PSRAM and move modified lvgl to local components

This commit is contained in:
Adolfo Reyna
2026-07-09 22:27:55 -04:00
parent df93252281
commit c4ec7ead55
3999 changed files with 813776 additions and 0 deletions
@@ -0,0 +1,58 @@
/**
* @file lv_layout_private.h
*
*/
#ifndef LV_LAYOUT_PRIVATE_H
#define LV_LAYOUT_PRIVATE_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#include "lv_layout.h"
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
typedef struct {
lv_layout_update_cb_t cb;
void * user_data;
} lv_layout_dsc_t;
/**********************
* GLOBAL PROTOTYPES
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
void lv_layout_init(void);
void lv_layout_deinit(void);
/**
* Update the layout of a widget
* @param obj pointer to a widget
*/
void lv_layout_apply(lv_obj_t * obj);
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /*extern "C"*/
#endif
#endif /*LV_LAYOUT_PRIVATE_H*/