forked from mirror/qmk_firmware
Minor documentation improvements.
This commit is contained in:
@@ -124,13 +124,13 @@
|
||||
#endif
|
||||
|
||||
#if !defined(CONTROL_ONLY_DEVICE) || defined(__DOXYGEN__)
|
||||
#if defined(USB_SERIES_4_AVR) || defined(USB_SERIES_6_AVR) || defined(USB_SERIES_7_AVR)
|
||||
#define ENDPOINT_TOTAL_ENDPOINTS 7
|
||||
#else
|
||||
#if defined(USB_SERIES_4_AVR) || defined(USB_SERIES_6_AVR) || defined(USB_SERIES_7_AVR) || defined(__DOXYGEN__)
|
||||
/** Total number of endpoints (including the default control endpoint at address 0) which may
|
||||
* be used in the device. Different USB AVR models support different amounts of endpoints,
|
||||
* this value reflects the maximum number of endpoints for the currently selected AVR model.
|
||||
*/
|
||||
#define ENDPOINT_TOTAL_ENDPOINTS 7
|
||||
#else
|
||||
#define ENDPOINT_TOTAL_ENDPOINTS 5
|
||||
#endif
|
||||
#else
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
{
|
||||
uint8_t Address; /**< Address of the pipe to configure, or zero if the table entry is to be unused. */
|
||||
uint16_t Size; /**< Size of the pipe bank, in bytes. */
|
||||
uint8_t EndpointAddress; /** Address of the endpoint in the connected device. */
|
||||
uint8_t EndpointAddress; /**< Address of the endpoint in the connected device. */
|
||||
uint8_t Type; /**< Type of the endpoint, a \c EP_TYPE_* mask. */
|
||||
uint8_t Banks; /**< Number of hardware banks to use for the pipe. */
|
||||
} USB_Pipe_Table_t;
|
||||
|
||||
Reference in New Issue
Block a user