Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #20, doxygen updates #156

Merged
merged 1 commit into from
Jan 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 28 additions & 29 deletions fsw/mission_inc/cf_perfids.h
Original file line number Diff line number Diff line change
@@ -1,32 +1,31 @@
/************************************************************************
** File: cf_perfids.h
**
**
** NASA Docket No. GSC-18,447-1, and identified as “CFS CFDP (CF)
** Application version 3.0.0”
** Copyright © 2019 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.
**
**
** Purpose:
** Define CF Performance IDs
**
**
**
**
*************************************************************************/
#ifndef _CF_PERFIDS_H_
#define _CF_PERFIDS_H_
*
* NASA Docket No. GSC-18,447-1, and identified as “CFS CFDP (CF)
* Application version 3.0.0”
* Copyright © 2019 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
*
* Define CF Performance IDs
*/

#ifndef CF_PERFIDS_H
#define CF_PERFIDS_H

#define CF_PERF_ID_APPMAIN 11
#define CF_PERF_ID_FSEEK 12
Expand All @@ -41,7 +40,7 @@
#define CF_PERF_ID_PDURCVD(x) (30 + x)
#define CF_PERF_ID_PDUSENT(x) (40 + x)

#endif /* !_CF_PERFIDS_H_ */
#endif /* !CF_PERFIDS_H */

/************************/
/* End of File Comment */
Expand Down
63 changes: 32 additions & 31 deletions fsw/platform_inc/cf_msgids.h
Original file line number Diff line number Diff line change
@@ -1,44 +1,45 @@
/************************************************************************
** File: cf_msgids.h
**
** NASA Docket No. GSC-18,447-1, and identified as “CFS CFDP (CF)
** Application version 3.0.0”
** Copyright © 2019 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.
**
**
** Purpose:
** The CF Application Message IDs header file
**
**
**
*************************************************************************/
#ifndef _CF_MSGIDS_H_
#define _CF_MSGIDS_H_
*
* NASA Docket No. GSC-18,447-1, and identified as “CFS CFDP (CF)
* Application version 3.0.0”
* Copyright © 2019 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
*
* The CF Application Message IDs header file
*/

#ifndef CF_MSGIDS_H
#define CF_MSGIDS_H

/**************************
** CF Command Message IDs
***************************/
* CF Command Message IDs
**************************/

#define CF_CMD_MID 0x18B3
#define CF_SEND_HK_MID 0x18B4
#define CF_WAKE_UP_MID 0x18B5

/***************************
** CF Telemetry Message IDs
****************************/
* CF Telemetry Message IDs
***************************/

#define CF_HK_TLM_MID 0x08B0
#define CF_CONFIG_TLM_MID 0x08B2

#endif /* !_CF_MSGIDS_H_ */
#endif /* !CF_MSGIDS_H */
Loading