finish modbus_tcp (without response)

This commit is contained in:
Obe Van Lierde
2023-11-13 16:05:04 +01:00
parent d730932235
commit 858e0aafb0
5 changed files with 175 additions and 88 deletions

View File

@@ -57,7 +57,7 @@ size_t llfs_file_list(llfs_file_t* file_list, size_t max_files, char* filter) {
}
// Iterate over all files in the filesystem
while (file != NULL && file_count < max_files) {
while (file != NULL && count < max_files) {
// Filter out files with a filename that does not match the filter
if (filter != NULL) {
if (!file_ext_cmp(file->name, filter)) {