Package javax.usb

Examples of javax.usb.UsbHub


  }

  @SuppressWarnings("unchecked")
  private static final UsbDevice findDevice() throws Exception {
    UsbServices services = UsbHostManager.getUsbServices();
    UsbHub rootHub = services.getRootUsbHub();
    return CrazyradioDriver.findDevice(rootHub);

  }
View Full Code Here


   * @author Jan Roberts
   */
  @Override
  public UsbInterfaceInfos findCM19ADevice() throws CM19AException, UsbException, UnsupportedEncodingException
  {
    UsbHub virtualRootUsbHub = UsbHostManager.getUsbServices().getRootUsbHub();

    if (virtualRootUsbHub == null)
    {
      throw new CM19AException("No virtual root usb hub found");
    }
View Full Code Here

TOP

Related Classes of javax.usb.UsbHub

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.