File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
examples/test_app_telem_file Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,8 @@ elseif(${CMAKE_BUILD_TYPE} MATCHES Examples)
7474 target_include_directories (${OUT_FILE_NAME} PRIVATE examples/test_app_cc1120_spi)
7575 elseif (${EXAMPLE_TYPE} MATCHES RS)
7676 add_executable (${OUT_FILE_NAME} examples/test_app_rs/main.c)
77+ elseif (${EXAMPLE_TYPE} MATCHES TELEM_FILE)
78+ add_executable (${OUT_FILE_NAME} examples/test_app_telem_file/main.c)
7779
7880 # ADD MORE EXAMPLES ABOVE THIS COMMENT
7981 else ()
Original file line number Diff line number Diff line change @@ -37,11 +37,11 @@ void vTask1(void *pvParameter) {
3737
3838 // Init File System:
3939 RETURN_IF_ERROR_CODE (setupFileSystem ());
40- sciPrint ("Initialized File System" );
40+ // sciPrint("Initialized File System");
4141
4242 // Creating, Writing, and Reading from example file:
4343 RETURN_IF_ERROR_CODE (createAndOpenTelemetryFileRW (telemBatchId , p_telemFileId ));
44- sciPrint ("Successfully created and opened telemetry file!" );
44+ // sciPrint("Successfully created and opened telemetry file!");
4545
4646 RETURN_IF_ERROR_CODE (writeTelemetryToFile ((int32_t )telemFileId , telemData ));
4747}
You can’t perform that action at this time.
0 commit comments