-
Go to cFS/dragoman_defs. Open targets.cmake in a text editor.
-
Add this line:
# Notify cfs to look for apps in aditional directory
list(APPEND MISSION_MODULE_SEARCH_PATH "apps/dragoman_apps/")
-
Locate the line that sets cpuX_APPLIST (where X = 1,2,3,etc.), and add it:
# For gateway app SET(cpuX_APPLIST ci_lab to_lab sch_lab gateway_app) # For mss app SET(cpuX_APPLIST ci_lab to_lab sch_lab mss_app) # For lunar app SET(cpuX_APPLIST ci_lab to_lab sch_lab lunar_app)
-
Go to cFS/dragoman_defs. Add the app you want in cpuX_cfe_es_startup.scr (where X = 1,2,3,etc.) :
# For gateway app CFE_APP, gateway_app, GatewayAppMain, GATEWAY_APP, 50, 16384, 0x0, 0; # For mss app CFE_APP, mss_app, MSSAppMain, MSS_APP, 50, 16384, 0x0, 0; # For lunar app CFE_APP, lunar_app, LunarAppMain, LUNAR_APP, 50, 16384, 0x0, 0;