WIP: COM Subsystem #356

Closed
muellerr wants to merge 5 commits from mueller/com-ss into develop
Showing only changes of commit 4cea1badf3 - Show all commits

View File

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