added submode enum
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
Robin Müller 2022-04-28 16:39:18 +02:00
parent 699bc520f0
commit 4cea1badf3
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814

View File

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