We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
都限制了 if(IDF_TARGET STREQUAL "esp32") set(COMPONENT_SRCS driver/camera.c driver/sccb.c driver/sensor.c driver/xclk.c sensors/ov2640.c sensors/ov3660.c sensors/ov5640.c sensors/ov7725.c sensors/ov7670.c sensors/nt99141.c conversions/yuv.c conversions/to_jpg.cpp conversions/to_bmp.c conversions/jpge.cpp conversions/esp_jpg_decode.c ) set(COMPONENT_ADD_INCLUDEDIRS driver/include conversions/include ) set(COMPONENT_PRIV_INCLUDEDIRS driver/private_include sensors/private_include conversions/private_include ) set(COMPONENT_REQUIRES driver) set(COMPONENT_PRIV_REQUIRES freertos nvs_flash) register_component() endif()
The text was updated successfully, but these errors were encountered:
Hi With above cmake content, and current code it only compiles on esp32 not on esp32s3. Please update the driver to be able to work on esp32s3
Sorry, something went wrong.
No branches or pull requests
都限制了
if(IDF_TARGET STREQUAL "esp32") set(COMPONENT_SRCS driver/camera.c
driver/sccb.c
driver/sensor.c
driver/xclk.c
sensors/ov2640.c
sensors/ov3660.c
sensors/ov5640.c
sensors/ov7725.c
sensors/ov7670.c
sensors/nt99141.c
conversions/yuv.c
conversions/to_jpg.cpp
conversions/to_bmp.c
conversions/jpge.cpp
conversions/esp_jpg_decode.c
)
set(COMPONENT_ADD_INCLUDEDIRS driver/include
conversions/include
)
set(COMPONENT_PRIV_INCLUDEDIRS driver/private_include
sensors/private_include
conversions/private_include
)
set(COMPONENT_REQUIRES driver)
set(COMPONENT_PRIV_REQUIRES freertos nvs_flash)
register_component() endif()
The text was updated successfully, but these errors were encountered: