From 4cea1badf33912a4572d02ab073d40cfab4ce27e Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 28 Apr 2022 16:39:18 +0200 Subject: [PATCH] added submode enum --- mission/tmtc/comDefinitions.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/mission/tmtc/comDefinitions.h b/mission/tmtc/comDefinitions.h index 92fe6977..97f99ea6 100644 --- a/mission/tmtc/comDefinitions.h +++ b/mission/tmtc/comDefinitions.h @@ -1,3 +1,12 @@ #pragma once -namespace com {} +#include + +namespace com { + +enum Submodes: uint8_t { + NONE = 0, + TX_ON = 1 +}; + +}