7a7f09be35
* Tab5 camera + other stuff Tab5 camera driver - SC2356 Custom SliderBox widget - slider with plus and minus buttons + value label and snapping Rtc Time service + rtc api Sdk release - only include drivers built for that specific target, eg: sc2356 driver is mipi / p4 only. No more hardcoded manual sdk cmakelists New function to find device by compatible string match. no more static cast bool wildness when trying to match a single device (like M5Stack PaperS3 for example) * feedback + fixes Fixed external app user data path. fix(gui): block app teardown until onHide() completes, preventing ELF unload racing a still-running app added camera device type and api * drain the snake sssem --------- Co-authored-by: Ken Van Hoeylandt <git@kenvanhoeylandt.net>
20 lines
748 B
CMake
20 lines
748 B
CMake
idf_component_register(
|
|
INCLUDE_DIRS
|
|
"Libraries/TactilityC/include"
|
|
"Libraries/TactilityKernel/include"
|
|
"Libraries/TactilityFreeRtos/include"
|
|
"Libraries/lvgl/include"
|
|
"Modules/lvgl-module/include"
|
|
# DRIVER_INCLUDE_DIRS_PLACEHOLDER
|
|
REQUIRES esp_timer
|
|
)
|
|
|
|
# Regular and core features
|
|
add_prebuilt_library(TactilityC Libraries/TactilityC/binary/libTactilityC.a)
|
|
add_prebuilt_library(TactilityKernel Libraries/TactilityKernel/binary/libTactilityKernel.a)
|
|
add_prebuilt_library(lvgl Libraries/lvgl/binary/liblvgl.a)
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE TactilityC)
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE TactilityKernel)
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE lvgl)
|