|
1 | | -/************************************************************************ |
2 | | - * NASA Docket No. GSC-18,917-1, and identified as “CFS Data Storage |
3 | | - * (DS) application version 2.6.1” |
4 | | - * |
5 | | - * Copyright (c) 2021 United States Government as represented by the |
6 | | - * Administrator of the National Aeronautics and Space Administration. |
7 | | - * All Rights Reserved. |
8 | | - * |
9 | | - * Licensed under the Apache License, Version 2.0 (the "License"); you may |
10 | | - * not use this file except in compliance with the License. You may obtain |
11 | | - * a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 |
12 | | - * |
13 | | - * Unless required by applicable law or agreed to in writing, software |
14 | | - * distributed under the License is distributed on an "AS IS" BASIS, |
15 | | - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
16 | | - * See the License for the specific language governing permissions and |
17 | | - * limitations under the License. |
18 | | - ************************************************************************/ |
19 | | - |
20 | | -/** |
21 | | - * @file |
22 | | - * The CFS Data Storage (DS) Application file containing the application |
23 | | - * initialization routines, the main routine and the command interface. |
24 | | - */ |
25 | | - |
26 | | -#include "cfe.h" |
27 | | -#include "ds_perfids.h" |
28 | | -#include "ds_msgids.h" |
29 | | -#include "ds_platform_cfg.h" |
30 | | -#include "ds_dispatch.h" |
31 | | -#include "ds_msg.h" |
32 | | -#include "ds_app.h" |
33 | | -#include "ds_cmds.h" |
34 | | -#include "ds_file.h" |
35 | | -#include "ds_table.h" |
36 | | -#include "ds_events.h" |
37 | | -#include "ds_msgdefs.h" |
38 | | - |
39 | | -#include <stdio.h> |
40 | | - |
41 | 1 | /************************************************************************ |
42 | 2 | * NASA Docket No. GSC-18,917-1, and identified as “CFS Data Storage |
43 | 3 | * (DS) application version 2.6.1” |
|
65 | 25 | #include "cfe.h" |
66 | 26 |
|
67 | 27 | #include "ds_platform_cfg.h" |
68 | | -#include "ds_verify.h" |
69 | 28 |
|
| 29 | +#include "ds_app.h" |
70 | 30 | #include "ds_appdefs.h" |
71 | | -#include "ds_msgids.h" |
| 31 | +#include "ds_cmds.h" |
| 32 | +#include "ds_dispatch.h" |
72 | 33 | #include "ds_events.h" |
73 | | - |
74 | 34 | #include "ds_msg.h" |
75 | | -#include "ds_app.h" |
76 | | -#include "ds_cmds.h" |
77 | | - |
78 | | -#include <stdio.h> |
| 35 | +#include "ds_msgdefs.h" |
| 36 | +#include "ds_msgids.h" |
| 37 | +#include "ds_platform_cfg.h" |
| 38 | +#include "ds_table.h" |
79 | 39 |
|
80 | 40 | bool DS_VerifyLength(const CFE_SB_Buffer_t *BufPtr, size_t ExpectedLength, uint16 FailEventID, const char *CommandName) |
81 | 41 | { |
|
0 commit comments