diff -r 578be2adaf3e -r 307f4279f433 Adaptation/GUID-FDAED7A7-3D93-5B57-9879-DF8BDBE8A9BD.dita --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Adaptation/GUID-FDAED7A7-3D93-5B57-9879-DF8BDBE8A9BD.dita Fri Oct 15 14:32:18 2010 +0100 @@ -0,0 +1,14 @@ + + + + + +Load and Open a USB Channel Before configuration the Logical Device Driver (LDD) must be loaded and opened.
Load the USB LDD

Before a channel can be opened the Logical Device Driver (LDD) must be loaded. Load a logical device using User::LoadLogicalDevice() passing it the file name of the LDD you wish to load.

_LIT(KLddName, "eusbcsc.ldd"); +TInt r = User::LoadLogicalDevice(KLddName);
Open a USB Channel

Open your USB channel using the LDD open function RDevUsbcScClient::Open().

RDevUsbcScClient gPort; +TInt r = gPort.Open(0);

After you have loaded and opened the USB LDD you should Set the Configuration Descriptors.

\ No newline at end of file