hid(dbg): Updated docs + minor adjustments.

This commit is contained in:
yellows8 2020-11-24 22:46:51 -05:00 committed by fincs
parent 7a8d397d81
commit a5799c87ed
No known key found for this signature in database
GPG Key ID: 62C7609ADA219C60
3 changed files with 165 additions and 45 deletions

View File

@ -1562,6 +1562,7 @@ Result hidGetGyroBias(UtilFloat3 *out);
/** /**
* @brief Gets the \ref HidNpadInterfaceType for the specified controller. * @brief Gets the \ref HidNpadInterfaceType for the specified controller.
* @note Only available on [4.0.0+]. * @note Only available on [4.0.0+].
* @param[in] id \ref HidNpadIdType
* @param[out] out \ref HidNpadInterfaceType * @param[out] out \ref HidNpadInterfaceType
*/ */
Result hidGetNpadInterfaceType(HidNpadIdType id, u8 *out); Result hidGetNpadInterfaceType(HidNpadIdType id, u8 *out);

View File

@ -112,7 +112,7 @@ typedef struct {
/// AbstractedPadState /// AbstractedPadState
typedef struct { typedef struct {
u32 type; ///< Type. Converted to HiddbgHdlsDeviceInfoV7::type internally by \ref hiddbgSetAutoPilotVirtualPadState. BIT(0) -> BIT(0), BIT(1) -> BIT(15), BIT(2-3) -> BIT(1-2), BIT(4-5) -> BIT(1-2), BIT(6) -> BIT(3). BIT(7-11) -> BIT(11-15), BIT(12-14) -> BIT(12-14), BIT(15) -> BIT(17), BIT(31) -> BIT(21). u32 type; ///< Type. Converted to HiddbgHdlsDeviceInfoV7::type internally by \ref hiddbgSetAutoPilotVirtualPadState. BIT(0) -> BIT(0), BIT(1) -> BIT(15), BIT(2-3) -> BIT(1-2), BIT(4-5) -> BIT(1-2), BIT(6) -> BIT(3). BIT(7-11) -> BIT(11-15), BIT(12-14) -> BIT(12-14), BIT(15) -> BIT(17), BIT(31) -> BIT(21).
u8 flags; ///< Flags. Only bit0 is used by \ref hiddbgSetAutoPilotVirtualPadState: when clear it will skip using the rest of the input and run \ref hiddbgUnsetAutoPilotVirtualPadState internally. u8 flags; ///< Flags. Only bit0 is used by \ref hiddbgSetAutoPilotVirtualPadState, when clear it will skip using the rest of the input and run \ref hiddbgUnsetAutoPilotVirtualPadState internally.
u8 pad[0x3]; ///< Padding u8 pad[0x3]; ///< Padding
u32 singleColorBody; ///< RGBA Single Body Color u32 singleColorBody; ///< RGBA Single Body Color
@ -134,92 +134,211 @@ void hiddbgExit(void);
/// Gets the Service object for the actual hiddbg service session. /// Gets the Service object for the actual hiddbg service session.
Service* hiddbgGetServiceSession(void); Service* hiddbgGetServiceSession(void);
/// Ignores subsequent home button presses. /**
* @brief Deactivates the HomeButton.
*/
Result hiddbgDeactivateHomeButton(void); Result hiddbgDeactivateHomeButton(void);
/// Writes the input RGB colors to the spi-flash for the specified controller (offset 0x6050 size 0x6). Only available with [3.0.0+]. /**
* @brief Writes the input RGB colors to the spi-flash for the specified UniquePad (offset 0x6050 size 0x6).
* @note Only available with [3.0.0+].
* @param[in] colorBody RGB body color.
* @param[in] colorButtons RGB buttons color.
* @param[in] unique_pad_id \ref HidsysUniquePadId
*/
Result hiddbgUpdateControllerColor(u32 colorBody, u32 colorButtons, HidsysUniquePadId unique_pad_id); Result hiddbgUpdateControllerColor(u32 colorBody, u32 colorButtons, HidsysUniquePadId unique_pad_id);
/// Writes the input RGB colors followed by inval to the spi-flash for the specified controller (offset 0x6050 size 0xD). Only available with [5.0.0+]. /**
* @brief Writes the input RGB colors followed by inval to the spi-flash for the specified UniquePad (offset 0x6050 size 0xD).
* @note Only available with [5.0.0+].
* @param[in] colorBody RGB body color.
* @param[in] colorButtons RGB buttons color.
* @param[in] colorLeftGrip RGB left grip color.
* @param[in] colorRightGrip RGB right grip color.
* @param[in] inval Input value.
* @param[in] unique_pad_id \ref HidsysUniquePadId
*/
Result hiddbgUpdateDesignInfo(u32 colorBody, u32 colorButtons, u32 colorLeftGrip, u32 colorRightGrip, u8 inval, HidsysUniquePadId unique_pad_id); Result hiddbgUpdateDesignInfo(u32 colorBody, u32 colorButtons, u32 colorLeftGrip, u32 colorRightGrip, u8 inval, HidsysUniquePadId unique_pad_id);
/// Get the OperationEvent for the specified controller. /**
/// The Event must be closed by the user once finished with it. * @brief Get the OperationEvent for the specified UniquePad.
/// Only available with [6.0.0+]. * @note The Event must be closed by the user once finished with it.
* @note Only available with [6.0.0+].
* @param[out] out_event Output Event.
* @param[in] autoclear The autoclear for the Event.
* @param[in] unique_pad_id \ref HidsysUniquePadId
**/
Result hiddbgAcquireOperationEventHandle(Event* out_event, bool autoclear, HidsysUniquePadId unique_pad_id); Result hiddbgAcquireOperationEventHandle(Event* out_event, bool autoclear, HidsysUniquePadId unique_pad_id);
/// Reads spi-flash for the specified controller. /**
/// This also uses \ref hiddbgAcquireOperationEventHandle to wait for the operation to finish, then \ref hiddbgGetOperationResult is used. * @brief Reads spi-flash for the specified UniquePad.
/// Only available with [6.0.0+]. * @note This also uses \ref hiddbgAcquireOperationEventHandle to wait for the operation to finish, then \ref hiddbgGetOperationResult is used.
* @note Only available with [6.0.0+].
* @param[in] offset Offset in spi-flash.
* @param[out] buffer Output buffer.
* @param[in] size Output buffer size.
* @param[in] unique_pad_id \ref HidsysUniquePadId
**/
Result hiddbgReadSerialFlash(u32 offset, void* buffer, size_t size, HidsysUniquePadId unique_pad_id); Result hiddbgReadSerialFlash(u32 offset, void* buffer, size_t size, HidsysUniquePadId unique_pad_id);
/// Writes spi-flash for the specified controller. /**
/// buffer and tmem_size must be page-aligned. size is the actual transfer size. * @brief Writes spi-flash for the specified UniquePad.
/// This also uses \ref hiddbgAcquireOperationEventHandle to wait for the operation to finish, then \ref hiddbgGetOperationResult is used. * @note This also uses \ref hiddbgAcquireOperationEventHandle to wait for the operation to finish, then \ref hiddbgGetOperationResult is used.
/// Only available with [6.0.0+]. * @note Only available with [6.0.0+].
* @param[in] offset Offset in spi-flash.
* @param[in] buffer Input buffer, must be 0x1000-byte aligned.
* @param[in] tmem_size Size of the buffer, must be 0x1000-byte aligned.
* @param[in] size Actual transfer size.
* @param[in] unique_pad_id \ref HidsysUniquePadId
**/
Result hiddbgWriteSerialFlash(u32 offset, void* buffer, size_t tmem_size, size_t size, HidsysUniquePadId unique_pad_id); Result hiddbgWriteSerialFlash(u32 offset, void* buffer, size_t tmem_size, size_t size, HidsysUniquePadId unique_pad_id);
/// Get the Result for the Operation and handles cleanup, for the specified controller. /**
/// Only available with [6.0.0+]. * @brief Get the Result for the Operation and handles cleanup, for the specified UniquePad.
* @note Only available with [6.0.0+].
* @param[in] unique_pad_id \ref HidsysUniquePadId
**/
Result hiddbgGetOperationResult(HidsysUniquePadId unique_pad_id); Result hiddbgGetOperationResult(HidsysUniquePadId unique_pad_id);
/// Gets the internal DeviceType for the specified controller. /**
/// Only available with [6.0.0+]. * @brief Gets the internal DeviceType for the specified controller.
/// Pre-9.0.0 the output is an u32, with [9.0.0+] it's an u8. * @note Only available with [6.0.0+].
* @param[in] unique_pad_id \ref HidsysUniquePadId
* @param[out] out Pre-9.0.0 this is an u32, with [9.0.0+] it's an u8.
**/
Result hiddbgGetUniquePadDeviceTypeSetInternal(HidsysUniquePadId unique_pad_id, u32 *out); Result hiddbgGetUniquePadDeviceTypeSetInternal(HidsysUniquePadId unique_pad_id, u32 *out);
/// Gets a list of \ref HiddbgAbstractedPadHandle, where handles is the output array with max entries = count. total_out is total entries written to the output array. /** @name AbstractedPad
/// Only available with [5.0.0-8.1.0]. * This is for virtual HID controllers. Only use this on pre-7.0.0, Hdls should be used otherwise.
*/
///@{
/**
* @brief Gets a list of \ref HiddbgAbstractedPadHandle.
* @note Only available with [5.0.0-8.1.0].
* @param[out] handles Output array of \ref HiddbgAbstractedPadHandle.
* @param[in] count Max number of entries for the handles array.
* @param[out] total_out Total output entries.
*/
Result hiddbgGetAbstractedPadHandles(HiddbgAbstractedPadHandle *handles, s32 count, s32 *total_out); Result hiddbgGetAbstractedPadHandles(HiddbgAbstractedPadHandle *handles, s32 count, s32 *total_out);
/// Gets the state for the specified \ref HiddbgAbstractedPadHandle. /**
/// Only available with [5.0.0-8.1.0]. * @brief Gets the state for the specified \ref HiddbgAbstractedPadHandle.
* @note Only available with [5.0.0-8.1.0].
* @param[in] handle \ref HiddbgAbstractedPadHandle
* @param[out] state \ref HiddbgAbstractedPadState
*/
Result hiddbgGetAbstractedPadState(HiddbgAbstractedPadHandle handle, HiddbgAbstractedPadState *state); Result hiddbgGetAbstractedPadState(HiddbgAbstractedPadHandle handle, HiddbgAbstractedPadState *state);
/// Similar to \ref hiddbgGetAbstractedPadHandles except this also returns the state for each pad in output array states. /**
/// Only available with [5.0.0-8.1.0]. * @brief Similar to \ref hiddbgGetAbstractedPadHandles except this also returns the state for each pad in output array states.
Result hiddbgGetAbstractedPadsState(HiddbgAbstractedPadHandle *handles, HiddbgAbstractedPadState *states, s32 count, s32 *total_entries); * @note Only available with [5.0.0-8.1.0].
* @param[out] handles Output array of \ref HiddbgAbstractedPadHandle.
* @param[out] states Output array of \ref HiddbgAbstractedPadState.
* @param[in] count Max number of entries for the handles/states arrays.
* @param[out] total_out Total output entries.
*/
Result hiddbgGetAbstractedPadsState(HiddbgAbstractedPadHandle *handles, HiddbgAbstractedPadState *states, s32 count, s32 *total_out);
/// Sets AutoPilot state for the specified pad. /**
/// AbstractedVirtualPadId can be any unique value as long as it's within bounds. For example, 0-7 is usable. * @brief Sets AutoPilot state for the specified pad.
/// Only available with [5.0.0-8.1.0]. * @note Only available with [5.0.0-8.1.0].
* @param[in] AbstractedVirtualPadId This can be any unique value as long as it's within bounds. For example, 0-7 is usable.
* @param[in] state \ref HiddbgAbstractedPadState
*/
Result hiddbgSetAutoPilotVirtualPadState(s8 AbstractedVirtualPadId, const HiddbgAbstractedPadState *state); Result hiddbgSetAutoPilotVirtualPadState(s8 AbstractedVirtualPadId, const HiddbgAbstractedPadState *state);
/// Clears AutoPilot state for the specified pad set by \ref hiddbgSetAutoPilotVirtualPadState. /**
/// Only available with [5.0.0-8.1.0]. * @brief Clears AutoPilot state for the specified pad set by \ref hiddbgSetAutoPilotVirtualPadState.
* @note Only available with [5.0.0-8.1.0].
* @param[in] AbstractedVirtualPadId Id from \ref hiddbgSetAutoPilotVirtualPadState.
*/
Result hiddbgUnsetAutoPilotVirtualPadState(s8 AbstractedVirtualPadId); Result hiddbgUnsetAutoPilotVirtualPadState(s8 AbstractedVirtualPadId);
/// Clears AutoPilot state for all pads set by \ref hiddbgSetAutoPilotVirtualPadState. /**
* @brief Clears AutoPilot state for all pads set by \ref hiddbgSetAutoPilotVirtualPadState.
*/
Result hiddbgUnsetAllAutoPilotVirtualPadState(void); Result hiddbgUnsetAllAutoPilotVirtualPadState(void);
/// Initialize Hdls. Hdls is for virtual HID controllers. Only available with [7.0.0+]. ///@}
/** @name Hdls
* This is for virtual HID controllers.
*/
///@{
/**
* @brief Initialize Hdls.
* @note Only available with [7.0.0+].
*/
Result hiddbgAttachHdlsWorkBuffer(void); Result hiddbgAttachHdlsWorkBuffer(void);
/// Exit Hdls, must be called at some point prior to hiddbgExit. Only available with [7.0.0+]. /**
* @brief Exit Hdls, must be called at some point prior to \ref hiddbgExit.
* @note Only available with [7.0.0+].
*/
Result hiddbgReleaseHdlsWorkBuffer(void); Result hiddbgReleaseHdlsWorkBuffer(void);
/// Checks if the given device is still attached, where the result is written to out. Only available with [7.0.0+]. /**
* @brief Checks if the given device is still attached.
* @note Only available with [7.0.0+].
* @param[in] handle \ref HiddbgHdlsHandle
* @param[out] out Whether the device is attached.
*/
Result hiddbgIsHdlsVirtualDeviceAttached(HiddbgHdlsHandle handle, bool *out); Result hiddbgIsHdlsVirtualDeviceAttached(HiddbgHdlsHandle handle, bool *out);
/// Gets state for \ref HiddbgHdlsNpadAssignment. Only available with [7.0.0+]. /**
* @brief Gets state for \ref HiddbgHdlsNpadAssignment.
* @note Only available with [7.0.0+].
* @param[out] state \ref HiddbgHdlsNpadAssignment
*/
Result hiddbgDumpHdlsNpadAssignmentState(HiddbgHdlsNpadAssignment *state); Result hiddbgDumpHdlsNpadAssignmentState(HiddbgHdlsNpadAssignment *state);
/// Gets state for \ref HiddbgHdlsStateList. Only available with [7.0.0+]. /**
* @brief Gets state for \ref HiddbgHdlsStateList.
* @note Only available with [7.0.0+].
* @param[out] state \ref HiddbgHdlsStateList
*/
Result hiddbgDumpHdlsStates(HiddbgHdlsStateList *state); Result hiddbgDumpHdlsStates(HiddbgHdlsStateList *state);
/// Sets state for \ref HiddbgHdlsNpadAssignment. Only available with [7.0.0+]. /**
* @brief Sets state for \ref HiddbgHdlsNpadAssignment.
* @note Only available with [7.0.0+].
* @param[in] state \ref HiddbgHdlsNpadAssignment
* @param[in] flag Flag
*/
Result hiddbgApplyHdlsNpadAssignmentState(const HiddbgHdlsNpadAssignment *state, bool flag); Result hiddbgApplyHdlsNpadAssignmentState(const HiddbgHdlsNpadAssignment *state, bool flag);
/// Sets state for \ref HiddbgHdlsStateList. Only available with [7.0.0+]. /**
/// The HiddbgHdlsState will be applied for each \ref HiddbgHdlsHandle. If a \ref HiddbgHdlsHandle is not found, code similar to \ref hiddbgAttachHdlsVirtualDevice will run with the \ref HiddbgHdlsDeviceInfo, then it will continue with applying state with the new device. * @brief Sets state for \ref HiddbgHdlsStateList.
* @note The \ref HiddbgHdlsState will be applied for each \ref HiddbgHdlsHandle. If a \ref HiddbgHdlsHandle is not found, code similar to \ref hiddbgAttachHdlsVirtualDevice will run with the \ref HiddbgHdlsDeviceInfo, then it will continue with applying state with the new device.
* @note Only available with [7.0.0+].
* @param[in] state \ref HiddbgHdlsStateList
*/
Result hiddbgApplyHdlsStateList(const HiddbgHdlsStateList *state); Result hiddbgApplyHdlsStateList(const HiddbgHdlsStateList *state);
/// Attach a device with the input info, where the output handle is written to handle. Only available with [7.0.0+]. /**
* @brief Attach a device with the input info.
* @note Only available with [7.0.0+].
* @param[out] handle \ref HiddbgHdlsHandle
* @param[in] info \ref HiddbgHdlsDeviceInfo
*/
Result hiddbgAttachHdlsVirtualDevice(HiddbgHdlsHandle *handle, const HiddbgHdlsDeviceInfo *info); Result hiddbgAttachHdlsVirtualDevice(HiddbgHdlsHandle *handle, const HiddbgHdlsDeviceInfo *info);
/// Detach the specified device. Only available with [7.0.0+]. /**
* @brief Detach the specified device.
* @note Only available with [7.0.0+].
* @param[in] handle \ref HiddbgHdlsHandle
*/
Result hiddbgDetachHdlsVirtualDevice(HiddbgHdlsHandle handle); Result hiddbgDetachHdlsVirtualDevice(HiddbgHdlsHandle handle);
/// Sets state for the specified device. Only available with [7.0.0+]. /**
* @brief Sets state for the specified device.
* @note Only available with [7.0.0+].
* @param[in] handle \ref HiddbgHdlsHandle
* @param[in] state \ref HiddbgHdlsState
*/
Result hiddbgSetHdlsState(HiddbgHdlsHandle handle, const HiddbgHdlsState *state); Result hiddbgSetHdlsState(HiddbgHdlsHandle handle, const HiddbgHdlsState *state);
///@}

View File

@ -235,11 +235,11 @@ Result hiddbgGetAbstractedPadState(HiddbgAbstractedPadHandle handle, HiddbgAbstr
return serviceDispatchInOut(&g_hiddbgSrv, 302, handle, *state); return serviceDispatchInOut(&g_hiddbgSrv, 302, handle, *state);
} }
Result hiddbgGetAbstractedPadsState(HiddbgAbstractedPadHandle *handles, HiddbgAbstractedPadState *states, s32 count, s32 *total_entries) { Result hiddbgGetAbstractedPadsState(HiddbgAbstractedPadHandle *handles, HiddbgAbstractedPadState *states, s32 count, s32 *total_out) {
if (hosversionBefore(5,0,0) || hosversionAtLeast(9,0,0)) if (hosversionBefore(5,0,0) || hosversionAtLeast(9,0,0))
return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer); return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer);
return serviceDispatchOut(&g_hiddbgSrv, 303, *total_entries, return serviceDispatchOut(&g_hiddbgSrv, 303, *total_out,
.buffer_attrs = { .buffer_attrs = {
SfBufferAttr_HipcPointer | SfBufferAttr_Out, SfBufferAttr_HipcPointer | SfBufferAttr_Out,
SfBufferAttr_HipcAutoSelect | SfBufferAttr_Out, SfBufferAttr_HipcAutoSelect | SfBufferAttr_Out,