Updated header

This commit is contained in:
Angel Cascarino
2022-01-11 16:10:21 +00:00
parent a404138903
commit 46f516ddbc

View File

@@ -113,6 +113,19 @@ typedef struct
unsigned short location;
} USB_HID_Report_Element_t;
/**
* @brief Does the application use Report IDs?
*
* If the application is not using Report IDs, then the id value that is passed around
* everywhere can just be zero. Otherwise zero is an invalid ID that has a special meaning
* in some cases (read the documentation for each function).
*
* @return Boolean
* @retval 1 Report IDs are in use
* @retval 0 Report IDs are not in use
*/
unsigned hidAreReportIdsInUse ( void );
/**
* \brief Register that a previously changed HID Report data has been sent
* to the USB Host.
@@ -190,19 +203,6 @@ size_t hidGetReportDescriptorLength( void );
*/
unsigned hidGetReportIdLimit ( void );
/**
* @brief Does the application use Report IDs?
*
* If the application is not using Report IDs, then the id value that is passed around
* everywhere can just be zero. Otherwise zero is an invalid ID that has a special meaning
* in some cases (read the documentation for each function).
*
* @return Boolean
* @retval 1 Report IDs are in use
* @retval 0 Report IDs are not in use
*/
unsigned hidIsReportIdInUse ( void );
/**
* @brief Is the provided report ID valid for passing to other functions.
*