Adaptions for EM #264
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "meier/q7s-em"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -11,2 +11,4 @@
#include "OBSWVersion.h"
// Set to 1 when software is build for EM
#define EM 0
There is a dedicated preprocessor define inside
q7sConfig.h
calledOBSW_Q7S_EM
@ -102,9 +102,13 @@ void Factory::setStaticFrameworkObjectIds() {
CommandingServiceBase::defaultPacketSource = objects::PUS_PACKET_DISTRIBUTOR;
CommandingServiceBase::defaultPacketDestination = objects::TM_FUNNEL;
#if EM == 1
There is a dedicated preprocessor define inside
q7sConfig.h
calledOBSW_Q7S_EM
@ -38,9 +38,13 @@ void ObjectFactory::produce(void* args) {
createSolarArrayDeploymentComponents();
createPlPcduComponents(gpioComIF, spiMainComIF, pwrSwitcher);
#if OBSW_ADD_SYRLINKS == 1
#if EM == 1
There is a dedicated preprocessor define inside
q7sConfig.h
calledOBSW_Q7S_EM