Home    Prev Next    
Contents
Programming For USB Device
Overview
Programmers Guide
Scenario
Data transfer
Synchronous Transfer
Asynchronous Transfer
Reading Descriptors
USB Support Routines And Structures
Common Procedures
UsbEnumerateDevices
OpenRapidUsb
IsRapidUsbOpened
CloseRapidUsb
Descriptors
UsbGetDescriptor
UsbGetDeviceDescriptor
UsbGetStringDescriptor
UsbGetConfigDescriptor
UsbFreeConfigDescriptor
UsbGetInterfaceDescriptor
UsbFreeInterfaceDescriptor
UsbGetEndpointDescriptor
Configure Device
UsbGetDeviceInfo
UsbUnconfigureDevice
UsbSelectConfig
UsbGetConfig
UsbSelectInterface
UsbGetInterface
UsbResetDevice
UsbGetBandwidthInfo
UsbCyclePort
Features and Status
UsbSetFeature
UsbClearFeature
UsbGetStatus
Vendor/Class Requests
UsbVendorRequestIn
UsbVendorRequestOut
UsbClassRequestIn
UsbClassRequestOut
Pipes
IsRapidUsbPipeOpened
UsbPipeOpen
UsbPipeClose
UsbGetPipeCount
UsbPipeGetInfo
UsbPipeDirectionIn
UsbPipeGetType
UsbTransfer
UsbTransferAsync
TRANSFER_COMPLETION_ROUTINE
UsbCancelTransfer
UsbPipeReset
UsbPipeAbort
Other
UsbGetPortStatus
UsbGetCurrentFrameNumber
USB Structures and Types
RDUSB_DEVICE_INFORMATION
RDUSB_PIPE_INFORMATION
RDUSB_PIPE_TYPE
RDUSB_BANDWIDTH_INFORMATION
UsbSelectConfig
Go to RapidDriver Main Page


Language

Description

C/C++
BOOL UsbSelectConfig(IN USB_DEVICE_HANDLE hUsb, 
IN UCHAR ConfigIndex);  
 
Delphi
function UsbSelectConfig(hUsb        : USB_DEVICE_HANDLE;
                         ConfigIndex : UCHAR) : BOOL; stdcall;

VB
Function UsbSelectConfig (ByVal hUsb As Long, _
                          ByVal ConfIndex As Byte) As Boolean



Parameters
 
hUsb  
Specifies device handle. This handle can be obtained with OpenRapidUsb.  
 
ConfigIndex  
index of configuration descriptor  

Return Value
 
If function fails it return FALSE. To detect error call GetLastError function.  

Description
 
Use this function to select configuration if device have more than one configuration or if device is in unconfigured state. To place device to this state use UsbUnconfigureDevice. Before calling this function stop all transfers and close all opened pipes with UsbPipeClose function. All opened pipe handles became invalid after configuration selection.