Files
bobbycar-boardcomputer-firm…/main/bluetoothmode.h

15 lines
151 B
C++

#pragma once
#include <cstdint>
namespace {
#ifdef FEATURE_BLUETOOTH
enum class BluetoothMode : uint8_t
{
Off,
Master,
Slave
};
#endif
}