Skip to content

Commit

Permalink
Fix #182, add CFE_MISSION prefix to topicids
Browse files Browse the repository at this point in the history
  • Loading branch information
jphickey committed Dec 13, 2023
1 parent 725d632 commit d01c5e8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions config/default_to_lab_msgids.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
#include "cfe_core_api_base_msgids.h"
#include "to_lab_topicids.h"

#define TO_LAB_CMD_MID CFE_PLATFORM_CMD_TOPICID_TO_MIDV(TO_LAB_CMD_TOPICID)
#define TO_LAB_SEND_HK_MID CFE_PLATFORM_CMD_TOPICID_TO_MIDV(TO_LAB_SEND_HK_TOPICID)
#define TO_LAB_HK_TLM_MID CFE_PLATFORM_TLM_TOPICID_TO_MIDV(TO_LAB_HK_TLM_TOPICID)
#define TO_LAB_DATA_TYPES_MID CFE_PLATFORM_TLM_TOPICID_TO_MIDV(TO_LAB_DATA_TYPES_TOPICID)
#define TO_LAB_CMD_MID CFE_PLATFORM_CMD_TOPICID_TO_MIDV(CFE_MISSION_TO_LAB_CMD_TOPICID)
#define TO_LAB_SEND_HK_MID CFE_PLATFORM_CMD_TOPICID_TO_MIDV(CFE_MISSION_TO_LAB_SEND_HK_TOPICID)
#define TO_LAB_HK_TLM_MID CFE_PLATFORM_TLM_TOPICID_TO_MIDV(CFE_MISSION_TO_LAB_HK_TLM_TOPICID)
#define TO_LAB_DATA_TYPES_MID CFE_PLATFORM_TLM_TOPICID_TO_MIDV(CFE_MISSION_TO_LAB_DATA_TYPES_TOPICID)

#endif
8 changes: 4 additions & 4 deletions config/default_to_lab_topicids.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
#ifndef TO_LAB_TOPICIDS_H
#define TO_LAB_TOPICIDS_H

#define TO_LAB_CMD_TOPICID 0x80
#define TO_LAB_SEND_HK_TOPICID 0x81
#define TO_LAB_HK_TLM_TOPICID 0x80
#define TO_LAB_DATA_TYPES_TOPICID 0x81
#define CFE_MISSION_TO_LAB_CMD_TOPICID 0x80
#define CFE_MISSION_TO_LAB_SEND_HK_TOPICID 0x81
#define CFE_MISSION_TO_LAB_HK_TLM_TOPICID 0x80
#define CFE_MISSION_TO_LAB_DATA_TYPES_TOPICID 0x81

#endif

0 comments on commit d01c5e8

Please sign in to comment.