Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/nos3#84-fprime-checkout' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jlucas9 committed Oct 17, 2024
2 parents 838cc68 + 468e0b6 commit 1e89c31
Show file tree
Hide file tree
Showing 16 changed files with 800 additions and 0 deletions.
14 changes: 14 additions & 0 deletions fsw/cfs/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 2.6.4)
project(CFS_GENERIC_REACTION_WHEEL C)

include(../../../ComponentSettings.cmake)

include_directories(mission_inc)
include_directories(platform_inc)

aux_source_directory(src APP_SRC_FILES)
include_directories(${hwlib_MISSION_DIR}/fsw/public_inc)

# Create the app module
add_cfe_app(generic_rw ${APP_SRC_FILES})

21 changes: 21 additions & 0 deletions fsw/cfs/mission_inc/generic_reaction_wheel_perfids.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/************************************************************************
** File:
** generic_reaction_wheel_perfids.h
**
** Purpose:
** Define Generic Reaction Wheel Performance IDs
**
** Notes:
**
*************************************************************************/
#ifndef _generic_reaction_wheel_perfids_h_
#define _generic_reaction_wheel_perfids_h_


#define GENERIC_RW_APP_PERF_ID 77

#endif /* _generic_reaction_wheel_perfids_h_ */

/************************/
/* End of File Comment */
/************************/
23 changes: 23 additions & 0 deletions fsw/cfs/platform_inc/generic_reaction_wheel_msgids.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/************************************************************************
** File:
** generic_reaction_wheel_msgids.h
**
** Purpose:
** Define Generic Reaction Wheel Message IDs
**
** Notes:
**
**
*************************************************************************/
#ifndef _generic_reaction_wheel_msgids_h_
#define _generic_reaction_wheel_h_

#define GENERIC_RW_APP_CMD_MID 0x1992
#define GENERIC_RW_APP_SEND_HK_MID 0x1993
#define GENERIC_RW_APP_HK_TLM_MID 0x0993

#endif /* _generic_reaction_wheel_msgids_h_ */

/************************/
/* End of File Comment */
/************************/
Loading

0 comments on commit 1e89c31

Please sign in to comment.