From 0dd89d2e0e0de3bb0b62228275092dc5e8e36fa3 Mon Sep 17 00:00:00 2001 From: Joseph Hickey Date: Thu, 7 Dec 2023 10:39:26 -0500 Subject: [PATCH] Fix #155, correct inclusion for SCH_LAB example table The SCH_LAB table references the CFE msgids but did not explicitly include this header. --- fsw/tables/sch_lab_table.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fsw/tables/sch_lab_table.c b/fsw/tables/sch_lab_table.c index 3eb0595..2e62521 100644 --- a/fsw/tables/sch_lab_table.c +++ b/fsw/tables/sch_lab_table.c @@ -18,7 +18,10 @@ #include "cfe_tbl_filedef.h" /* Required to obtain the CFE_TBL_FILEDEF macro definition */ #include "sch_lab_tbl.h" -#include "cfe_sb.h" /* Required to use the CFE_SB_MSGID_WRAP_VALUE macro */ +#include "cfe_sb_api_typedefs.h" /* Required to use the CFE_SB_MSGID_WRAP_VALUE macro */ + +/* This is for the standard set of CFE core app MsgID values */ +#include "cfe_msgids.h" #ifdef HAVE_CI_LAB #include "ci_lab_msgids.h"