eive-obsw/mission/comDefs.h
Robin Mueller 4ad6584782
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
afmt and possible bugfix
2023-01-26 14:42:13 +01:00

15 lines
217 B
C++

#ifndef MISSION_COMDEFS_H_
#define MISSION_COMDEFS_H_
namespace com {
enum class Datarate : uint8_t {
LOW_RATE_MODULATION_BPSK,
HIGH_RATE_MODULATION_0QPSK,
NUM_DATARATES
};
}
#endif /* MISSION_COMDEFS_H_ */