mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
d956ba2a6c
Add burst_length option to client Change uint32_t to color_pixel_rgb888_data_t Descriptor always malloc with MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT Add dscr-port mode block size configuration as a separate API in 2D-DMA driver Do writeback only on an extended window, instead of entire picture
14 lines
396 B
CMake
14 lines
396 B
CMake
set(srcs)
|
|
set(public_include "include")
|
|
if(CONFIG_SOC_PPA_SUPPORTED)
|
|
list(APPEND srcs "src/ppa_core.c"
|
|
"src/ppa_srm.c"
|
|
"src/ppa_blend.c"
|
|
"src/ppa_fill.c")
|
|
endif()
|
|
|
|
idf_component_register(SRCS ${srcs}
|
|
INCLUDE_DIRS ${public_include}
|
|
PRIV_REQUIRES esp_mm esp_pm
|
|
)
|