diff --git a/arch_build.cmake b/arch_build.cmake index f79ea615..5e380238 100644 --- a/arch_build.cmake +++ b/arch_build.cmake @@ -15,25 +15,18 @@ set(CF_PLATFORM_CONFIG_FILE_LIST cf_platform_cfg.h ) -if (CFE_EDS_ENABLED_BUILD) - - # In an EDS-based build, msgids come generated from the EDS tool - set(CF_CFGFILE_SRC_cf_msgids "${CMAKE_CURRENT_LIST_DIR}/config/cf_eds_msg_topicids.h") - -endif(CFE_EDS_ENABLED_BUILD) - # Create wrappers around the all the config header files # This makes them individually overridable by the missions, without modifying # the distribution default copies foreach(CF_CFGFILE ${CF_PLATFORM_CONFIG_FILE_LIST}) get_filename_component(CFGKEY "${CF_CFGFILE}" NAME_WE) if (DEFINED CF_CFGFILE_SRC_${CFGKEY}) - set(DEFAULT_SOURCE "${CF_CFGFILE_SRC_${CFGKEY}}") + set(DEFAULT_SOURCE GENERATED_FILE "${CF_CFGFILE_SRC_${CFGKEY}}") else() - set(DEFAULT_SOURCE "${CMAKE_CURRENT_LIST_DIR}/config/default_${CF_CFGFILE}") + set(DEFAULT_SOURCE FALLBACK_FILE "${CMAKE_CURRENT_LIST_DIR}/config/default_${CF_CFGFILE}") endif() generate_config_includefile( FILE_NAME "${CF_CFGFILE}" - FALLBACK_FILE ${DEFAULT_SOURCE} + ${DEFAULT_SOURCE} ) endforeach() diff --git a/config/default_cf_msgids.h b/config/default_cf_msgids.h index 4ec72865..51095d13 100644 --- a/config/default_cf_msgids.h +++ b/config/default_cf_msgids.h @@ -24,14 +24,21 @@ #ifndef CF_MSGIDS_H #define CF_MSGIDS_H +#include "cfe_core_api_base_msgids.h" +#include "cf_topicids.h" + /** * \defgroup cfscfcmdmid CFS CFDP Command Message IDs * \{ */ -#define CF_CMD_MID (0x18B3) /**< \brief Message ID for commands */ -#define CF_SEND_HK_MID (0x18B4) /**< \brief Message ID to request housekeeping telemetry */ -#define CF_WAKE_UP_MID (0x18B5) /**< \brief Message ID for waking up the processing cycle */ +#define CF_CMD_MID CFE_PLATFORM_CMD_TOPICID_TO_MIDV(CFE_MISSION_CF_CMD_TOPICID) /**< \brief Message ID for commands */ +#define CF_SEND_HK_MID \ + CFE_PLATFORM_CMD_TOPICID_TO_MIDV( \ + CFE_MISSION_CF_SEND_HK_TOPICID) /**< \brief Message ID to request housekeeping telemetry */ +#define CF_WAKE_UP_MID \ + CFE_PLATFORM_CMD_TOPICID_TO_MIDV( \ + CFE_MISSION_CF_WAKE_UP_TOPICID) /**< \brief Message ID for waking up the processing cycle */ /**\}*/ @@ -40,8 +47,12 @@ * \{ */ -#define CF_HK_TLM_MID (0x08B0) /**< \brief Message ID for housekeeping telemetry */ -#define CF_EOT_TLM_MID (0x08B3) /**< \brief Message ID for end of transaction telemetry */ +#define CF_HK_TLM_MID \ + CFE_PLATFORM_TLM_TOPICID_TO_MIDV(CFE_MISSION_CF_HK_TLM_TOPICID) /**< \brief Message ID for housekeeping telemetry \ + */ +#define CF_EOT_TLM_MID \ + CFE_PLATFORM_TLM_TOPICID_TO_MIDV( \ + CFE_MISSION_CF_EOT_TLM_TOPICID) /**< \brief Message ID for end of transaction telemetry */ /**\}*/ diff --git a/config/default_cf_topicids.h b/config/default_cf_topicids.h new file mode 100644 index 00000000..7a6c5abc --- /dev/null +++ b/config/default_cf_topicids.h @@ -0,0 +1,33 @@ +/************************************************************************ + * NASA Docket No. GSC-18,447-1, and identified as “CFS CFDP (CF) + * Application version 3.0.0” + * + * Copyright (c) 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 + * CFDP (CF) Application Topic IDs + */ +#ifndef CF_TOPICIDS_H +#define CF_TOPICIDS_H + +#define CFE_MISSION_CF_CMD_TOPICID 0xB3 /**< \brief Message ID for commands */ +#define CFE_MISSION_CF_SEND_HK_TOPICID 0xB4 /**< \brief Message ID to request housekeeping telemetry */ +#define CFE_MISSION_CF_WAKE_UP_TOPICID 0xB5 /**< \brief Message ID for waking up the processing cycle */ +#define CFE_MISSION_CF_HK_TLM_TOPICID 0xB0 /**< \brief Message ID for housekeeping telemetry */ +#define CFE_MISSION_CF_EOT_TLM_TOPICID 0xB3 /**< \brief Message ID for end of transaction telemetry */ + +#endif diff --git a/mission_build.cmake b/mission_build.cmake index 6f61c2d1..0dcdff61 100644 --- a/mission_build.cmake +++ b/mission_build.cmake @@ -23,6 +23,7 @@ set(CF_MISSION_CONFIG_FILE_LIST cf_tbldefs.h cf_tbl.h cf_tblstruct.h + cf_topicids.h ) if (CFE_EDS_ENABLED_BUILD)