-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/nos3#84-fprime-checkout' into dev
- Loading branch information
Showing
16 changed files
with
800 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 */ | ||
/************************/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 */ | ||
/************************/ |
Oops, something went wrong.