File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -213,6 +213,7 @@ Options for `EXAMPLE_TYPE` include:
213213- ` VN100 ` - for ` vn100_demo `
214214- ` CC1120_SPI ` - for ` test_app_cc1120_spi `
215215- ` ADC ` - for ` test_app_adc `
216+ - ` ARDUCAM ` - for ` test_app_arducam `
216217
217218Instructions on how to add examples:
218219
Original file line number Diff line number Diff line change @@ -63,11 +63,13 @@ elseif(${CMAKE_BUILD_TYPE} MATCHES Examples)
6363 add_executable (${OUT_FILE_NAME} examples/vn100_demo/test_binary_reading/main.c)
6464 elseif (${EXAMPLE_TYPE} MATCHES ADC)
6565 add_executable (${OUT_FILE_NAME} examples/test_app_adc/main.c)
66- elseif (${EXAMPLE_TYPE} MATCHES CC1120_SPI)
67- add_executable (${OUT_FILE_NAME} examples/test_app_cc1120_spi/main.c examples/test_app_cc1120_spi/cc1120_spi_tests.c)
68- target_include_directories (${OUT_FILE_NAME} PRIVATE examples/test_app_cc1120_spi)
69- elseif (${EXAMPLE_TYPE} MATCHES RS)
70- add_executable (${OUT_FILE_NAME} examples/test_app_rs/main.c)
66+ elseif (${EXAMPLE_TYPE} MATCHES CC1120_SPI)
67+ add_executable (${OUT_FILE_NAME} examples/test_app_cc1120_spi/main.c examples/test_app_cc1120_spi/cc1120_spi_tests.c)
68+ target_include_directories (${OUT_FILE_NAME} PRIVATE examples/test_app_cc1120_spi)
69+ elseif (${EXAMPLE_TYPE} MATCHES RS)
70+ add_executable (${OUT_FILE_NAME} examples/test_app_rs/main.c)
71+ elseif (${EXAMPLE_TYPE} MATCHES ARDUCAM)
72+ add_executable (${OUT_FILE_NAME} examples/test_app_arducam/main.c)
7173
7274 # ADD MORE EXAMPLES ABOVE THIS COMMENT
7375 else ()
You can’t perform that action at this time.
0 commit comments