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_ */
|