Robin Mueller
4ad6584782
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
15 lines
217 B
C++
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_ */
|