eive-obsw/common/config/commonConfig.cpp
Robin Mueller 8aa412e865
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
add CFDP APID to TCP parse list
2022-09-16 18:10:23 +02:00

12 lines
488 B
C++

#include "commonConfig.h"
#include "eive/definitions.h"
#include "fsfw/tmtcpacket/ccsds/defs.h"
const fsfw::Version common::OBSW_VERSION{OBSW_VERSION_MAJOR, OBSW_VERSION_MINOR,
OBSW_VERSION_REVISION, OBSW_VERSION_CST_GIT_SHA1};
const uint16_t common::PUS_PACKET_ID =
ccsds::getTcSpacePacketIdFromApid(config::EIVE_PUS_APID, true);
const uint16_t common::CFDP_PACKET_ID =
ccsds::getTcSpacePacketIdFromApid(config::EIVE_CFDP_APID, false);