I am going to use Keil uVision to develop wireless USB cable based on the wireless mouse demo program. Now I am using the Nordic nRF24LU1 two main feature boards to develop. So I need some code and data related to USB cable.THANKS!!
"So I need some code and data related to USB cable."
You should have this SDK from Nordic. "nRF24LU1 Software Development Kit" www.nordicsemi.com/.../Prod_brief_Devtools_nRF24LU1_SDK.pdf
As the brochure shows, the SDK provides, KEY FEATURES - Qualified USB device stack firmware - Mouse, keyboard and remote HID classes
Using the HID class, you can make a HID host app on the two PCs, communicating each other.
Upon the provided device stack, you can implement other USB classes. 1) CDC - cross connection over virtual COM ports 2) Audio - USB inter-phone / MIDI cable 3) Printer class - virtual printer 4) Mass storage - Shared storage volume (but incomplete). 5) PTP (Still Image) / MTP - virtual still camera 6) RNDIS - works like Ethernet cross cable 7) UVC - bidirectional video system etc.
It's left for your imagination.
Tsuneo
Thank you very much. ^^