Robin Mueller
4cea1badf3
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
13 lines
106 B
C++
13 lines
106 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace com {
|
|
|
|
enum Submodes: uint8_t {
|
|
NONE = 0,
|
|
TX_ON = 1
|
|
};
|
|
|
|
}
|