Robin Mueller
13f3963f69
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
- COM Subsystem now handles datarate config - torquer config and comCfg moved to mission/config folder - CCSDS Handler: Added default rate submode
16 lines
268 B
C++
16 lines
268 B
C++
#ifndef MISSION_COMCFG_H_
|
|
#define MISSION_COMCFG_H_
|
|
|
|
#include <fsfw/ipc/MutexIF.h>
|
|
|
|
#include "mission/comDefs.h"
|
|
|
|
namespace com {
|
|
|
|
com::Datarate getCurrentDatarate();
|
|
void setCurrentDatarate(com::Datarate newRate);
|
|
|
|
} // namespace com
|
|
|
|
#endif /* MISSION_COMCFG_H_ */
|