General cleanup and more port work to the AVR32 UC3B.
This commit is contained in:
parent
4a3b70e727
commit
92b3553a07
9 changed files with 34 additions and 79 deletions
|
|
@ -92,7 +92,7 @@
|
|||
defined(__AVR_ATmega32U2__) || defined(__AVR_ATmega16U2__) || defined(__AVR_ATmega8U2__)))
|
||||
/** String descriptor index for the device's unique serial number string descriptor within the device.
|
||||
* This unique serial number is used by the host to associate resources to the device (such as drivers or COM port
|
||||
* number allocations) to a device regardless of the port it is plugged in to on the host. Some USB AVRs contain
|
||||
* number allocations) to a device regardless of the port it is plugged in to on the host. Some microcontrollers contain
|
||||
* a unique serial number internally, and setting the device descriptors serial number string index to this value
|
||||
* will cause it to use the internal serial number.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@
|
|||
#if defined(USB_SERIES_4_AVR) || defined(USB_SERIES_6_AVR) || defined(USB_SERIES_7_AVR)
|
||||
#define ENDPOINT_DETAILS_MAXEP 7
|
||||
|
||||
#define ENDPOINT_DETAILS_EP0 64, 2
|
||||
#define ENDPOINT_DETAILS_EP0 64, 1
|
||||
#define ENDPOINT_DETAILS_EP1 256, 2
|
||||
#define ENDPOINT_DETAILS_EP2 64, 2
|
||||
#define ENDPOINT_DETAILS_EP3 64, 2
|
||||
|
|
@ -111,7 +111,7 @@
|
|||
#else
|
||||
#define ENDPOINT_DETAILS_MAXEP 5
|
||||
|
||||
#define ENDPOINT_DETAILS_EP0 64, 2
|
||||
#define ENDPOINT_DETAILS_EP0 64, 1
|
||||
#define ENDPOINT_DETAILS_EP1 64, 1
|
||||
#define ENDPOINT_DETAILS_EP2 64, 1
|
||||
#define ENDPOINT_DETAILS_EP3 64, 2
|
||||
|
|
@ -262,8 +262,8 @@
|
|||
* ascending order, or bank corruption will occur.
|
||||
* \n\n
|
||||
*
|
||||
* \note Certain models of USB AVR's endpoints may have different maximum packet sizes based on the endpoint's
|
||||
* index - refer to the chosen USB AVR's datasheet to determine the maximum bank size for each endpoint.
|
||||
* \note Different endpoints may have different maximum packet sizes based on the endpoint's index - refer to
|
||||
* the chosen microcontroller model's datasheet to determine the maximum bank size for each endpoint.
|
||||
* \n\n
|
||||
*
|
||||
* \note The default control endpoint should not be manually configured by the user application, as
|
||||
|
|
|
|||
|
|
@ -838,8 +838,8 @@
|
|||
* or bank corruption will occur.
|
||||
* \n\n
|
||||
*
|
||||
* \note Certain models of USB AVR's pipes may have different maximum packet sizes based on the pipe's
|
||||
* index - refer to the chosen USB AVR's datasheet to determine the maximum bank size for each pipe.
|
||||
* \note Certain microcontroller model's pipes may have different maximum packet sizes based on the pipe's
|
||||
* index - refer to the chosen microcontroller's datasheet to determine the maximum bank size for each pipe.
|
||||
* \n\n
|
||||
*
|
||||
* \note The default control pipe should not be manually configured by the user application, as it is
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue