From owner-freebsd-usb@FreeBSD.ORG Thu Oct 31 07:10:02 2013 Return-Path: Delivered-To: freebsd-usb@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 742A8D27 for ; Thu, 31 Oct 2013 07:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 61AA124EA for ; Thu, 31 Oct 2013 07:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r9V7A1qt057596 for ; Thu, 31 Oct 2013 07:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r9V7A16h057595; Thu, 31 Oct 2013 07:10:01 GMT (envelope-from gnats) Date: Thu, 31 Oct 2013 07:10:01 GMT Message-Id: <201310310710.r9V7A16h057595@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org Cc: From: Hans Petter Selasky Subject: Re: usb/183505: [usb] Arduino Leonardo exposes three interface descriptors but no modem is attached to the first one (bInterfaceSubClass=2) X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Hans Petter Selasky List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 07:10:02 -0000 The following reply was made to PR usb/183505; it has been noted by GNATS. From: Hans Petter Selasky To: adrian chadd Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: usb/183505: [usb] Arduino Leonardo exposes three interface descriptors but no modem is attached to the first one (bInterfaceSubClass=2) Date: Thu, 31 Oct 2013 08:01:59 +0100 On 10/30/13 23:34, adrian chadd wrote: > bInterfaceProtocol = 0x0000 Hi, The umodem driver currently only supports: #define UIPROTO_CDC_AT 1 You need to add more entries to: static const STRUCT_USB_HOST_ID umodem_devs[] = { --HPS