Hi,
I'm trying to implement some kind of a USB bridge using LPC55S16-EVK.
The general idea is something like:
MCU's USB HS is connected to PC1 and USB FS is connected to PC2.
I need to transfer a big file from PC1 to PC2 (up to a few hundred MB).
What is the fastest way to handle the PC1 - MCU transfer?
I tried to use the generic_hid example from the sdk, but the HID packets are too small (64B max.), and it will create a bottleneck with big files.
How can I achieve the biggest packets? I was thinking maybe 4KB.
Thanks