eive-obsw/mission/tmtc/comDefinitions.h
Robin Mueller 4cea1badf3
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
added submode enum
2022-04-28 16:39:18 +02:00

13 lines
106 B
C++

#pragma once
#include <cstdint>
namespace com {
enum Submodes: uint8_t {
NONE = 0,
TX_ON = 1
};
}