Skip to content

Commit 82c0bcc

Browse files
Please help.
1 parent d2add17 commit 82c0bcc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

obc/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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 ()

obc/examples/test_app_reliance_edge_sd/test_delete/test_delete.c renamed to obc/examples/test_app_telem_file/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)