void EVENT_USB_Device_ConfigurationChanged(void){ CDC_Device_ConfigureEndpoints(&VirtualSerial_CDC_Interface); }
void EVENT_USB_Device_ConfigurationChanged(void) /** Event handler for the library USB Configuration Changed event. */ { bool ConfigSuccess = true; ConfigSuccess &= CDC_Device_ConfigureEndpoints(&VirtualSerial_CDC_Interface); LEDs_SetAllLEDs(ConfigSuccess ? LEDMASK_USB_READY : LEDMASK_USB_ERROR); }
/** Event handler for the library USB Configuration Changed event. */ void EVENT_USB_Device_ConfigurationChanged(void) { bool ConfigSuccess = true; ConfigSuccess &= CDC_Device_ConfigureEndpoints(&tpad_CDC_Interface); }
void EVENT_USB_DEVICE_ConfigureEndpoints(void) { CDC_Device_ConfigureEndpoints(&CDC_interface); }
/** Event handler for the library USB Configuration Changed event. */ void EVENT_USB_Device_ConfigurationChanged(void) { bool success = true; success &= CDC_Device_ConfigureEndpoints(&VirtualSerial_CDC_Interface); }