Hello,
I have a modified version of the USB bulk transfer example for the TM4C123GXL launchpad up and running. I'm seeing the successful microsoft OS string descriptors coming to the MCU and need to handle this request to load the WinUSB driver. I'm curious what the best approach to add a "descriptor" handler to handle this custom string descriptor would be.
I see a potential option in the usbdbulk.c file shown below starting at line 329:

I'm asking though because all the other string descriptor handling is working fine and don't want to break them. I also have this file locally stored in my project so I can modify things I'm unable to modify in the usb_bulk_structs.c. Ideally I wouldn't modify any lower level driver code because it is all compiled down (I think). I've tried modifying source code in the usblib driver folder and the changes don't take place - I'm assuming because this code is linked in and not compiled every time I clikc compile/build in CCS.
Any direction regarding a good place for a custom (microsoft os string descriptor) string descriptor handler might go would be greatly appreciated!

