Fix compile errors for the USB XMEGA parts when the USB driver is used.
Add core support for the ATXMEGA64A1U. Minor documentation corrections.
This commit is contained in:
parent
3223786c49
commit
3bb8055459
4 changed files with 10 additions and 9 deletions
|
|
@ -174,12 +174,9 @@
|
|||
#define USB_SERIES_UC3B1_AVR32
|
||||
#define USB_CAN_BE_DEVICE
|
||||
#define USB_CAN_BE_HOST
|
||||
#elif (defined(__AVR_ATxmega128A1U__))
|
||||
#elif (defined(__AVR_ATxmega128A1U__) || defined(__AVR_ATxmega64A1U__))
|
||||
#define USB_SERIES_A1U_XMEGA
|
||||
#define USB_CAN_BE_DEVICE
|
||||
#elif (defined(__AVR_ATxmega16A4U__) || defined(__AVR_ATxmega32A4U__))
|
||||
#define USB_SERIES_A4U_XMEGA
|
||||
#define USB_CAN_BE_DEVICE
|
||||
#elif (defined(__AVR_ATxmega64A3U__) || defined(__AVR_ATxmega128A3U__) || \
|
||||
defined(__AVR_ATxmega192A3U__) || defined(__AVR_ATxmega256A3U__))
|
||||
#define USB_SERIES_A3U_XMEGA
|
||||
|
|
@ -187,6 +184,9 @@
|
|||
#elif (defined(__AVR_ATxmega256A3BU__))
|
||||
#define USB_SERIES_A3BU_XMEGA
|
||||
#define USB_CAN_BE_DEVICE
|
||||
#elif (defined(__AVR_ATxmega16A4U__) || defined(__AVR_ATxmega32A4U__))
|
||||
#define USB_SERIES_A4U_XMEGA
|
||||
#define USB_CAN_BE_DEVICE
|
||||
#endif
|
||||
|
||||
#if (defined(USB_CAN_BE_DEVICE) && defined(USB_CAN_BE_HOST))
|
||||
|
|
|
|||
|
|
@ -275,10 +275,10 @@
|
|||
uint8_t EPTypeMask = 0;
|
||||
switch (Type)
|
||||
{
|
||||
case USB_EPTYPE_Control:
|
||||
case EP_TYPE_CONTROL:
|
||||
EPTypeMask = USB_EP_TYPE_CONTROL_gc;
|
||||
break;
|
||||
case USB_EPTYPE_Isochronous:
|
||||
case EP_TYPE_ISOCHRONOUS:
|
||||
EPTypeMask = USB_EP_TYPE_ISOCHRONOUS_gc;
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue