mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 21:03:16 +00:00
25 lines
891 B
C++
25 lines
891 B
C++
#pragma once
|
|
#include <switch.h>
|
|
#include "controllers/bluetoothcontroller.hpp"
|
|
|
|
#define BTM_COD_MAJOR_PERIPHERAL 0x05
|
|
#define BTM_COD_MINOR_GAMEPAD 0x08
|
|
#define BTM_COD_MINOR_JOYSTICK 0x04
|
|
|
|
namespace ams::mitm::btdrv {
|
|
|
|
controller::ControllerType identifyController(uint16_t vid, uint16_t pid);
|
|
controller::BluetoothController *locateController(const BluetoothAddress *address);
|
|
|
|
bool IsValidSwitchControllerName(const char *name);
|
|
|
|
void attachDeviceHandler(const BluetoothAddress *address);
|
|
void removeDeviceHandler(const BluetoothAddress *address);
|
|
|
|
inline bool IsController(const BluetoothDeviceClass *cod) {
|
|
return ( (((uint8_t *)cod)[1] & 0x0f) == BTM_COD_MAJOR_PERIPHERAL) &&
|
|
( ((((uint8_t *)cod)[2] & 0x0f) == BTM_COD_MINOR_GAMEPAD) ||
|
|
( (((uint8_t *)cod)[2] & 0x0f) == BTM_COD_MINOR_JOYSTICK) );
|
|
}
|
|
|
|
}
|