We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38eb95c commit 17cc0c5Copy full SHA for 17cc0c5
2 files changed
Svc/FileWorker/CMakeLists.txt
@@ -10,7 +10,9 @@
10
#
11
####
12
13
-add_fprime_subdirectory("${CMAKE_CURRENT_LIST_DIR}/test/FileTester")
+if (BUILD_TESTING AND NOT __FPRIME_NO_UT_GEN__)
14
+ add_fprime_subdirectory("${CMAKE_CURRENT_LIST_DIR}/test/FileTester")
15
+endif()
16
17
register_fprime_module(
18
AUTOCODER_INPUTS
Svc/FileWorker/FileWorker.hpp
@@ -68,7 +68,7 @@ class FileWorker : public FileWorkerComponentBase {
68
void writeIn_handler(FwIndexType portNum, //!< The port number
69
const Fw::StringBase& path,
70
Fw::Buffer& buffer,
71
- U64 offsetBytes,
+ FwSizeType offsetBytes,
72
bool append) override;
73
74
// ----------------------------------------------------------------------
0 commit comments