-
Notifications
You must be signed in to change notification settings - Fork 26
/
fm_msg.h
671 lines (581 loc) · 21.3 KB
/
fm_msg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
/************************************************************************
* NASA Docket No. GSC-18,918-1, and identified as “Core Flight
* Software System (cFS) File Manager Application Version 2.6.1”
*
* Copyright (c) 2021 United States Government as represented by the
* Administrator of the National Aeronautics and Space Administration.
* All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License. You may obtain
* a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
************************************************************************/
/**
* @file
* Specification for the CFS FM command and telemetry messages.
*/
#ifndef FM_MSG_H
#define FM_MSG_H
#include <cfe.h>
#include <fm_platform_cfg.h>
#include <fm_extern_typedefs.h>
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* */
/* FM -- command packet structures */
/* */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* \defgroup cfsfmcmdstructs CFS File Manager Command Structures
* \{
*/
/**
* \brief Housekeeping Request command packet structure
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
} FM_SendHkCmd_t;
/**
* \brief No-Operation command packet structure
*
* For command details see #FM_NOOP_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
} FM_NoopCmd_t;
/**
* \brief Reset Counters command packet structure
*
* For command details see #FM_RESET_COUNTERS_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
} FM_ResetCountersCmd_t;
/**
* \brief Copy/Move File command payload structure
*
* Contains a source and target file name and an overwrite flag
*
* Used by #FM_COPY_FILE_CC, #FM_MOVE_FILE_CC
*/
typedef struct
{
uint16 Overwrite; /**< \brief Allow overwrite */
char Source[OS_MAX_PATH_LEN]; /**< \brief Source filename */
char Target[OS_MAX_PATH_LEN]; /**< \brief Target filename */
} FM_OvwSourceTargetFilename_Payload_t;
/**
* \brief Copy File command packet structure
*
* For command details see #FM_COPY_FILE_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_OvwSourceTargetFilename_Payload_t Payload; /**< \brief Command payload */
} FM_CopyFileCmd_t;
/**
* \brief Move File command packet structure
*
* For command details see #FM_MOVE_FILE_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_OvwSourceTargetFilename_Payload_t Payload; /**< \brief Command payload */
} FM_MoveFileCmd_t;
/**
* \brief Source and Target filename command payload structure
*
* Used by #FM_RENAME_FILE_CC, #FM_DECOMPRESS_FILE_CC
*/
typedef struct
{
char Source[OS_MAX_PATH_LEN]; /**< \brief Source filename */
char Target[OS_MAX_PATH_LEN]; /**< \brief Target filename */
} FM_SourceTargetFileName_Payload_t;
/**
* \brief Rename File command packet structure
*
* For command details see #FM_RENAME_FILE_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_SourceTargetFileName_Payload_t Payload; /**< \brief Command payload */
} FM_RenameFileCmd_t;
/**
* \brief Single filename command payload structure
*
* Used by #FM_DELETE_FILE_CC
*/
typedef struct
{
char Filename[OS_MAX_PATH_LEN]; /**< \brief Delete filename */
} FM_SingleFilename_Payload_t;
/**
* \brief Delete File command packet structure
*
* For command details see #FM_DELETE_FILE_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_SingleFilename_Payload_t Payload; /**< \brief Command Payload */
} FM_DeleteFileCmd_t;
/**
* \brief Single directory command payload structure
*
* Used by #FM_DELETE_ALL_FILES_CC, #FM_CREATE_DIRECTORY_CC, #FM_DELETE_DIRECTORY_CC
*/
typedef struct
{
char Directory[OS_MAX_PATH_LEN]; /**< \brief Directory name */
} FM_DirectoryName_Payload_t;
/**
* \brief Delete All command packet structure
*
* For command details see #FM_DELETE_ALL_FILES_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_DirectoryName_Payload_t Payload; /**< \brief Command Payload */
} FM_DeleteAllFilesCmd_t;
/**
* \brief Decompress File command packet structure
*
* For command details see #FM_DECOMPRESS_FILE_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_SourceTargetFileName_Payload_t Payload; /**< \brief Command Payload */
} FM_DecompressFileCmd_t;
/**
* \brief Two source, one target filename command payload structure
*
* Used by #FM_CONCAT_FILES_CC
*/
typedef struct
{
char Source1[OS_MAX_PATH_LEN]; /**< \brief Source 1 filename */
char Source2[OS_MAX_PATH_LEN]; /**< \brief Source 2 filename */
char Target[OS_MAX_PATH_LEN]; /**< \brief Target filename */
} FM_TwoSourceOneTarget_Payload_t;
/**
* \brief Concatenate Files command packet structure
*
* For command details see #FM_CONCAT_FILES_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_TwoSourceOneTarget_Payload_t Payload; /**< \brief Command Payload */
} FM_ConcatFilesCmd_t;
/**
* \brief Filename and CRC command payload structure
*
* Used by #FM_GET_FILE_INFO_CC
*/
typedef struct
{
char Filename[OS_MAX_PATH_LEN]; /**< \brief Filename */
uint32 FileInfoCRC; /**< \brief File info CRC method */
} FM_FilenameAndCRC_Payload_t;
/**
* \brief Get File Info command packet structure
*
* For command details see #FM_GET_FILE_INFO_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_FilenameAndCRC_Payload_t Payload; /**< \brief Command Payload */
} FM_GetFileInfoCmd_t;
/**
* \brief Get Open Files command packet structure
*
* For command details see #FM_GET_OPEN_FILES_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
} FM_GetOpenFilesCmd_t;
/**
* \brief Create Directory command packet structure
*
* For command details see #FM_CREATE_DIRECTORY_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_DirectoryName_Payload_t Payload; /**< \brief Command Payload */
} FM_CreateDirectoryCmd_t;
/**
* \brief Delete Directory command packet structure
*
* For command details see #FM_DELETE_DIRECTORY_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_DirectoryName_Payload_t Payload; /**< \brief Command Payload */
} FM_DeleteDirectoryCmd_t;
/**
* \brief Get Directory and output to file command payload
*
* Contains a directory and output file name, with optional flags
* Used by #FM_GET_DIR_LIST_FILE_CC
*/
typedef struct
{
char Directory[OS_MAX_PATH_LEN]; /**< \brief Directory name */
char Filename[OS_MAX_PATH_LEN]; /**< \brief Filename */
uint8 GetSizeTimeMode; /**< \brief Option to query size, time, and mode of files (CPU intensive) */
uint8 Spare01[3]; /**< \brief Padding to 32 bit boundary */
} FM_GetDirectoryToFile_Payload_t;
/**
* \brief Get DIR List to File command packet structure
*
* For command details see #FM_GET_DIR_LIST_FILE_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_GetDirectoryToFile_Payload_t Payload; /**< \brief Command Payload */
} FM_GetDirListFileCmd_t;
/**
* \brief Get Directory and output to message command payload
*
* Contains a directory and position offset, with optional flags
* Used by #FM_GET_DIR_LIST_PKT_CC
*/
typedef struct
{
char Directory[OS_MAX_PATH_LEN]; /**< \brief Directory name */
uint32 DirListOffset; /**< \brief Index of 1st dir entry to put in packet */
uint8 GetSizeTimeMode; /**< \brief Option to query size, time, and mode of files (CPU intensive) */
uint8 Spare01[3]; /**< \brief Padding to 32 bit boundary */
} FM_GetDirectoryToPkt_Payload_t;
/**
* \brief Get DIR List to Packet command packet structure
*
* For command details see #FM_GET_DIR_LIST_PKT_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_GetDirectoryToPkt_Payload_t Payload; /**< \brief Command Payload */
} FM_GetDirListPktCmd_t;
/**
* \brief Get Free Space command packet structure
*
* For command details see #FM_MONITOR_FILESYSTEM_SPACE_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
} FM_MonitorFilesystemSpaceCmd_t;
/**
* \brief Table Index and State command payload structure
*
* Used by #FM_SET_TABLE_STATE_CC
*/
typedef struct
{
uint32 TableEntryIndex; /**< \brief Table entry index */
uint32 TableEntryState; /**< \brief New table entry state */
} FM_TableIndexAndState_Payload_t;
/**
* \brief Set Table State command packet structure
*
* For command details see #FM_SET_TABLE_STATE_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_TableIndexAndState_Payload_t Payload; /**< \brief Command Payload */
} FM_SetTableStateCmd_t;
/**
* \brief File name and mode command payload structure
*
* Used by #FM_SET_PERMISSIONS_CC
*/
typedef struct
{
char FileName[OS_MAX_PATH_LEN]; /**< \brief File name of the permissions to set */
uint32 Mode; /**< \brief Permissions, passed directly to OS_chmod */
} FM_FilenameAndMode_Payload_t;
/**
* \brief Set Permissions for a file
*
* For command details see #FM_SET_PERMISSIONS_CC
*/
typedef struct
{
CFE_MSG_CommandHeader_t CommandHeader; /**< \brief Command header */
FM_FilenameAndMode_Payload_t Payload;
} FM_SetPermissionsCmd_t;
/**\}*/
/**
* \defgroup cfsfmtlm CFS File Manager Telemetry
* \{
*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* */
/* FM -- get directory listing telemetry structures */
/* */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* \brief Get Directory Listing entry structure
*/
typedef struct
{
char EntryName[OS_MAX_PATH_LEN]; /**< \brief Directory Listing Filename */
uint32 EntrySize; /**< \brief Directory Listing File Size */
uint32 ModifyTime; /**< \brief Directory Listing File Last Modification Times */
uint32 Mode; /**< \brief Mode of the file (Permissions from #OS_FILESTAT_MODE) */
} FM_DirListEntry_t;
/**
* \brief Get Directory Listing telemetry payload
*/
typedef struct
{
char DirName[OS_MAX_PATH_LEN]; /**< \brief Directory Name */
uint32 TotalFiles; /**< \brief Number of files in the directory */
uint32 PacketFiles; /**< \brief Number of files in this packet */
uint32 FirstFile; /**< \brief Index into directory files of first packet file */
FM_DirListEntry_t FileList[FM_DIR_LIST_PKT_ENTRIES]; /**< \brief Directory listing file data */
} FM_DirListPkt_Payload_t;
/**
* \brief Get Directory Listing telemetry packet
*/
typedef struct
{
CFE_MSG_TelemetryHeader_t TelemetryHeader; /**< \brief Telemetry Header */
FM_DirListPkt_Payload_t Payload; /**< \brief Telemetry Payload */
} FM_DirListPkt_t;
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* */
/* FM -- get directory listing to file structures */
/* */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* \brief Get Directory Listing file statistics structure
*/
typedef struct
{
char DirName[OS_MAX_PATH_LEN]; /**< \brief Directory name */
uint32 DirEntries; /**< \brief Number of entries in the directory */
uint32 FileEntries; /**< \brief Number of entries written to output file */
} FM_DirListFileStats_t;
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* */
/* FM -- get file information telemetry structure */
/* */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* \brief Get File Info telemetry payload
*/
typedef struct
{
uint8 FileStatus; /**< \brief Status indicating whether the file is open or closed */
uint8 CRC_Computed; /**< \brief Flag indicating whether a CRC was computed or not */
uint8 Spare[2]; /**< \brief Structure padding */
uint32 CRC; /**< \brief CRC value if computed */
uint32 FileSize; /**< \brief File Size */
uint32 LastModifiedTime; /**< \brief Last Modification Time of File */
uint32 Mode; /**< \brief Mode of the file (Permissions) */
char Filename[OS_MAX_PATH_LEN]; /**< \brief Name of File */
} FM_FileInfoPkt_Payload_t;
/**
* \brief Get File Info telemetry packet
*/
typedef struct
{
CFE_MSG_TelemetryHeader_t TelemetryHeader; /**< \brief Telemetry Header */
FM_FileInfoPkt_Payload_t Payload; /**< \brief Telemetry Payload */
} FM_FileInfoPkt_t;
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* */
/* FM -- get open files list telemetry structures */
/* */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* \brief Get Open Files list entry structure
*/
typedef struct
{
char LogicalName[OS_MAX_PATH_LEN]; /**< \brief Logical filename */
char AppName[OS_MAX_API_NAME]; /**< \brief Application that opened file */
} FM_OpenFilesEntry_t;
/**
* \brief Get Open Files telemetry payload
*/
typedef struct
{
uint32 NumOpenFiles; /**< \brief Number of files opened via cFE */
FM_OpenFilesEntry_t OpenFilesList[OS_MAX_NUM_OPEN_FILES]; /**< \brief List of files opened via cFE */
} FM_OpenFilesPkt_Payload_t;
/**
* \brief Get Open Files telemetry packet
*/
typedef struct
{
CFE_MSG_TelemetryHeader_t TelemetryHeader; /**< \brief Telemetry Header */
FM_OpenFilesPkt_Payload_t Payload; /**< \brief Telemetry Payload */
} FM_OpenFilesPkt_t;
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* */
/* FM -- monitor filesystem telemetry structures */
/* */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* \brief Monitor filesystem list entry structure
*/
typedef struct
{
uint8 ReportType;
char Name[OS_MAX_PATH_LEN]; /**< \brief File system name */
uint64 Blocks; /**< \brief Block count from last check/poll, 0 if unknown */
uint64 Bytes; /**< \brief Byte count from last check/poll, 0 if unknown */
} FM_MonitorReportEntry_t;
/**
* \brief Monitor filesystem telemetry payload
*/
typedef struct
{
FM_MonitorReportEntry_t FileSys[FM_TABLE_ENTRY_COUNT]; /**< \brief Array of file system free space entries */
} FM_MonitorReportPkt_Payload_t;
/**
* \brief Monitor filesystem telemetry packet
*/
typedef struct
{
CFE_MSG_TelemetryHeader_t TelemetryHeader; /**< \brief Telemetry Header */
FM_MonitorReportPkt_Payload_t Payload; /**< \brief Telemetry Payload */
} FM_MonitorReportPkt_t;
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* */
/* FM -- housekeeping telemetry structure */
/* */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* \brief Housekeeping telemetry payload
*/
typedef struct
{
uint8 CommandCounter; /**< \brief Application command counter */
uint8 CommandErrCounter; /**< \brief Application command error counter */
uint8 Spare; /**< \brief Placeholder for unused command warning counter */
uint8 NumOpenFiles; /**< \brief Number of open files in the system */
uint8 ChildCmdCounter; /**< \brief Child task command counter */
uint8 ChildCmdErrCounter; /**< \brief Child task command error counter */
uint8 ChildCmdWarnCounter; /**< \brief Child task command warning counter */
uint8 ChildQueueCount; /**< \brief Number of pending commands in queue */
uint8 ChildCurrentCC; /**< \brief Command code currently executing */
uint8 ChildPreviousCC; /**< \brief Command code previously executed */
} FM_HousekeepingPkt_Payload_t;
/**
* \brief Housekeeping telemetry packet
*/
typedef struct
{
CFE_MSG_TelemetryHeader_t TelemetryHeader; /**< \brief Telemetry Header */
FM_HousekeepingPkt_Payload_t Payload; /**< \brief Telemetry Payload */
} FM_HousekeepingPkt_t;
/**\}*/
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* */
/* FM -- monitor filesyste table structures */
/* */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
typedef enum
{
/**
* Table entry is not used, these entries are ignored
*/
FM_MonitorTableEntry_Type_UNUSED = 0,
/**
* Monitor the free space on given volume
*
* The given path will be passed to OS_FileSysStatVolume() and the results
* will be reported in the generated TLM entry.
*/
FM_MonitorTableEntry_Type_VOLUME_FREE_SPACE = 1,
/**
* Estimate the sum of space used by files within specified directory
*
* The given path will be opened as a directory. The size of each regular
* file present in that directory will be summed to produce an estimate of the
* total space associated with that directory.
*
* Note that this yields only an estimate, as there can be discrepancies
* between the file size as observed by this method and the actual disk blocks
* used by a given file.
*/
FM_MonitorTableEntry_Type_DIRECTORY_ESTIMATE = 2
} FM_MonitorTableEntry_Type_t;
/**
* \brief Monitor table entry
*/
typedef struct
{
/**
* Table entry type.
*
* This should be one of the enumeration values in FM_MonitorTableEntry_Type_t.
* It is defined as a uint8 in this table to ensure a consistent size.
*/
uint8_t Type;
/**
* Boolean flag indicating whether this entry is active or not
*/
uint8_t Enabled;
/**
* Location to monitor
*
* The interpretation of this string depends on Type
* See description of the FM_MonitorTableEntry_Type_t for how this is to be set
*/
char Name[OS_MAX_PATH_LEN];
} FM_MonitorTableEntry_t;
/**
* \brief Get Free Space table definition
*/
typedef struct
{
FM_MonitorTableEntry_t Entries[FM_TABLE_ENTRY_COUNT]; /**< \brief One entry for each monitor */
} FM_MonitorTable_t;
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* */
/* FM -- child task interface command queue entry */
/* */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* \brief Child Task Interface command queue entry structure
*/
typedef struct
{
CFE_MSG_FcnCode_t CommandCode; /**< \brief Command code - identifies the command */
uint32 DirListOffset; /**< \brief Starting entry for dir list commands */
uint32 FileInfoState; /**< \brief File info state */
uint32 FileInfoSize; /**< \brief File info size */
uint32 FileInfoTime; /**< \brief File info time */
uint32 FileInfoCRC; /**< \brief File info CRC method */
char Source1[OS_MAX_PATH_LEN]; /**< \brief First source file or directory name command argument */
char Source2[OS_MAX_PATH_LEN]; /**< \brief Second source filename command argument */
char Target[OS_MAX_PATH_LEN]; /**< \brief Target filename command argument */
uint8 GetSizeTimeMode; /**< \brief Whether to invoke stat call for size and time (CPU intensive) */
uint32 Mode; /**< \brief File Mode */
} FM_ChildQueueEntry_t;
#endif