Question
Add PIMA device class to USBX
I am trying to add the PIMA device class to USBX. I have used CubeMX to enable the PIMA device class and am trying to fill in the missing details to make it work.
It looks like I need to have something handle the PIMA class in USBD_FrameWork_AddToConfDesc(), but don't know how to add an additional enum to USBD_CompositeClassTypeDef in ux_device_descriptors.h
/* Enum Class Type */
typedef enum
{
CLASS_TYPE_NONE = 0,
CLASS_TYPE_HID = 1,
CLASS_TYPE_CDC_ACM = 2,
CLASS_TYPE_MSC = 3,
CLASS_TYPE_CDC_ECM = 4,
CLASS_TYPE_DFU = 5,
} USBD_CompositeClassTypeDef;Any guidance?
Thanks,
Mark
