Hi David,
Very nice to hear about a USB commercial product!
I am afraid that you cannot use the default VID/PID from the USB device stack for a commercial product. VID are owned by the vendor company and are assigned and maintained by USB-IF. Visit www.usb.org for more information on USB-IF membership and obtaining a VID.
PID are assigned by each vendor as they see fit. Once you have a VID, you can assign any PID you like, as there will be no conflict amongst different vendor devices.
So once you have your VID/PID, you can use them just by changing them in the constructor of each USBdevice.
For instance, let's say that you are using USBMouse:
USBMouse mouse(REL_MOUSE, your_VID, your_PID, your_product_release);
Out of curiosity, what are you building ?!
Hope that helps
Sam
First, apologies for the newbie question. Can someone point me to the policy concerning the use of mbed's USB Vendor ID in a commercial product? Also, which library file contains the VID and PID should I want to change them? Thanks in advance for any info!