2020-05-11 20:30:08 +00:00
|
|
|
#include "btdrv_shim.h"
|
|
|
|
#include <stratosphere/sf/sf_mitm_dispatch.h>
|
|
|
|
|
2020-06-15 09:05:41 +00:00
|
|
|
Result btdrvInitializeBluetoothFwd(Service* srv, Handle *out_handle) {
|
|
|
|
return serviceMitmDispatch(srv, 1,
|
2020-05-11 20:30:08 +00:00
|
|
|
.out_handle_attrs = { SfOutHandleAttr_HipcCopy },
|
2020-05-22 10:29:36 +00:00
|
|
|
.out_handles = out_handle,
|
2020-05-11 20:30:08 +00:00
|
|
|
);
|
|
|
|
}
|
2020-05-22 10:29:36 +00:00
|
|
|
|
2020-06-15 09:05:41 +00:00
|
|
|
Result btdrvFinalizeBluetoothFwd(Service* srv) {
|
|
|
|
return serviceMitmDispatch(srv, 4);
|
2020-05-22 10:29:36 +00:00
|
|
|
}
|
|
|
|
|
2020-06-15 09:05:41 +00:00
|
|
|
Result btdrvInitializeHidFwd(Service* srv, Handle *out_handle, u16 version) {
|
|
|
|
return serviceMitmDispatchIn(srv, 16, version,
|
2020-05-22 10:29:36 +00:00
|
|
|
.out_handle_attrs = { SfOutHandleAttr_HipcCopy },
|
|
|
|
.out_handles = out_handle,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-06-15 09:05:41 +00:00
|
|
|
Result btdrvWriteHidDataFwd(Service* srv, const BluetoothAddress *address, const BluetoothHidData *data) {
|
2020-05-22 10:29:36 +00:00
|
|
|
const struct {
|
|
|
|
BluetoothAddress address;
|
|
|
|
} in = { *address };
|
|
|
|
|
2020-06-15 09:05:41 +00:00
|
|
|
return serviceMitmDispatchIn(srv, 19, in,
|
2020-05-22 10:29:36 +00:00
|
|
|
.buffer_attrs = { SfBufferAttr_FixedSize | SfBufferAttr_HipcPointer | SfBufferAttr_In },
|
|
|
|
.buffers = { {data, sizeof(BluetoothHidData)} }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-07-09 19:23:48 +00:00
|
|
|
/*
|
2020-06-22 21:14:54 +00:00
|
|
|
Result btdrvSetHidReportFwd(Service* srv, const BluetoothAddress *address, BluetoothHhReportType type, const BluetoothHidData *data) {
|
|
|
|
const struct {
|
|
|
|
BluetoothAddress address;
|
|
|
|
BluetoothHhReportType type;
|
|
|
|
} in = { *address, type};
|
|
|
|
|
|
|
|
return serviceMitmDispatchIn(srv, 21, in,
|
|
|
|
.buffer_attrs = { SfBufferAttr_FixedSize | SfBufferAttr_HipcPointer | SfBufferAttr_In },
|
|
|
|
.buffers = { {data, sizeof(BluetoothHidData)} }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Result btdrvGetHidReportFwd(Service* srv, const BluetoothAddress *address, BluetoothHhReportType type, u8 id) {
|
|
|
|
const struct {
|
|
|
|
BluetoothAddress address;
|
|
|
|
BluetoothHhReportType type;
|
|
|
|
u8 id;
|
|
|
|
} in = { *address, type, id };
|
|
|
|
|
|
|
|
return serviceMitmDispatchIn(srv, 22, in);
|
|
|
|
}
|
2020-07-09 19:23:48 +00:00
|
|
|
*/
|
2020-06-02 21:24:40 +00:00
|
|
|
|
2020-06-15 09:05:41 +00:00
|
|
|
Result btdrvGetPairedDeviceInfoFwd(Service* srv, const BluetoothAddress *address, BluetoothDevicesSettings *device) {
|
2020-06-02 21:24:40 +00:00
|
|
|
const struct {
|
|
|
|
BluetoothAddress address;
|
|
|
|
} in = { *address };
|
|
|
|
|
2020-06-15 09:05:41 +00:00
|
|
|
return serviceMitmDispatchIn(srv, 25, in,
|
2020-06-02 21:24:40 +00:00
|
|
|
.buffer_attrs = { SfBufferAttr_FixedSize | SfBufferAttr_HipcPointer | SfBufferAttr_Out },
|
|
|
|
.buffers = { {device, sizeof(BluetoothDevicesSettings)} }
|
|
|
|
);
|
|
|
|
}
|
2020-06-22 21:14:54 +00:00
|
|
|
|
2020-06-15 09:05:41 +00:00
|
|
|
Result btdrvFinalizeHidFwd(Service* srv) {
|
|
|
|
return serviceMitmDispatch(srv, 26);
|
2020-05-22 10:29:36 +00:00
|
|
|
}
|
|
|
|
|
2020-06-15 09:05:41 +00:00
|
|
|
Result btdrvRegisterHidReportEventFwd(Service* srv, Handle *out_handle) {
|
|
|
|
return serviceMitmDispatch(srv, hosversionBefore(4, 0, 0) ? 36 : 37,
|
2020-05-22 10:29:36 +00:00
|
|
|
.out_handle_attrs = { SfOutHandleAttr_HipcCopy },
|
|
|
|
.out_handles = out_handle,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-06-15 09:05:41 +00:00
|
|
|
Result btdrvGetHidReportEventInfoFwd(Service* srv, Handle *out_handle) {
|
|
|
|
return serviceMitmDispatch(srv, 38,
|
2020-05-22 10:29:36 +00:00
|
|
|
.out_handle_attrs = { SfOutHandleAttr_HipcCopy },
|
|
|
|
.out_handles = out_handle,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-06-15 09:05:41 +00:00
|
|
|
Result btdrvInitializeBleFwd(Service* srv, Handle *out_handle) {
|
|
|
|
return serviceMitmDispatch(srv, 46,
|
2020-05-22 10:29:36 +00:00
|
|
|
.out_handle_attrs = { SfOutHandleAttr_HipcCopy },
|
|
|
|
.out_handles = out_handle,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-06-15 09:05:41 +00:00
|
|
|
Result btdrvFinalizeBleFwd(Service* srv) {
|
|
|
|
return serviceMitmDispatch(srv, 49);
|
2020-05-22 10:29:36 +00:00
|
|
|
}
|