mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 21:03:16 +00:00
27 lines
764 B
C++
27 lines
764 B
C++
#include "bluetoothcontroller.hpp"
|
|
#include "../btdrv_mitm_logging.hpp"
|
|
|
|
namespace controller {
|
|
|
|
BluetoothController::BluetoothController(const BluetoothAddress *address, ControllerType type) : m_address(*address), m_type(type) {
|
|
m_switchController = (type == ControllerType_Joycon) || (type == ControllerType_SwitchPro);
|
|
}
|
|
|
|
const BluetoothAddress& BluetoothController::address(void) const {
|
|
return m_address;
|
|
}
|
|
|
|
ControllerType BluetoothController::type(void) {
|
|
return m_type;
|
|
}
|
|
|
|
bool BluetoothController::isSwitchController(void) {
|
|
return m_switchController;
|
|
}
|
|
|
|
Result BluetoothController::initialize(void) {
|
|
BTDRV_LOG_FMT("BluetoothController::initialize");
|
|
return 0;
|
|
}
|
|
|
|
}
|