[PUSB] epType array is now part of HID class

This commit is contained in:
Cristian Maglie 2015-09-30 18:45:09 +02:00
parent f8b2d8acb3
commit dbaec17c03
2 changed files with 3 additions and 6 deletions

View File

@ -110,15 +110,11 @@ bool HID_::setup(USBSetup& setup, uint8_t i)
}
}
// XXX: I've found no way to pass literal value directly in
// the PUSBListNode constructor
static uint8_t epTypeDef[] = { EP_TYPE_INTERRUPT_IN };
HID_::HID_(void) : PUSBListNode(1, 1, epTypeDef),
HID_::HID_(void) : PUSBListNode(1, 1, epType),
rootNode(NULL), sizeof_hidReportDescriptor(0),
modules_count(0), protocol(1), idle(1)
{
// XXX: Shall this be done in PUSBListNode(...) constructor?
epType[0] = EP_TYPE_INTERRUPT_IN;
PluggableUSB.plug(this);
}

View File

@ -88,6 +88,7 @@ protected:
private:
HIDDescriptor hidInterface;
uint8_t epType[1];
HIDDescriptorListNode* rootNode;
uint16_t sizeof_hidReportDescriptor;