Skip to content

Commit

Permalink
fix: baremetal filesystem readDirectory (#2489)
Browse files Browse the repository at this point in the history
Co-authored-by: Kyle Botteon <Gregory.K.Botteon@jpl.nasa.gov>
  • Loading branch information
kbotteon and Kyle Botteon authored Jan 18, 2024
1 parent 4382585 commit 20d3a6a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Os/Baremetal/FileSystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ Status removeDirectory(const char* path) {
return INVALID_PATH;
} // end removeDirectory

Status readDirectory(const char* path, const U32 maxNum, Fw::String fileArray[]) {
Status readDirectory(const char* path, const U32 maxNum, Fw::String fileArray[], U32& numFiles) {
numFiles = 0;
return OTHER_ERROR;
}
} // end readDirectory

Status removeFile(const char* path) {
return OTHER_ERROR;
} // end removeFile
Expand Down

0 comments on commit 20d3a6a

Please sign in to comment.