From owner-freebsd-usb@FreeBSD.ORG Fri Aug 20 16:15:20 2010 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3D3D10656A3 for ; Fri, 20 Aug 2010 16:15:20 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe02.swip.net [212.247.154.33]) by mx1.freebsd.org (Postfix) with ESMTP id 504AF8FC1B for ; Fri, 20 Aug 2010 16:15:19 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.1 cv=uQlts9P3TFIiE3mXDKsOajf6rXzGvPXEyWzE93HpGms= c=1 sm=1 a=jNjj0npkQw4A:10 a=Q9fys5e9bTEA:10 a=M8b_wTzEtboA:10 a=MnI1ikcADjEx7bvsp0jZvQ==:17 a=4I05h4SrAAAA:8 a=pAJeSyp9inBX-d0YxCMA:9 a=iq7h21pyNI65yybIGvRtdOCtMnQA:4 a=PUjeQqilurYA:10 a=MnI1ikcADjEx7bvsp0jZvQ==:117 Received: from [188.126.201.140] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe02.swip.net (CommuniGate Pro SMTP 5.2.19) with ESMTPA id 9691338; Fri, 20 Aug 2010 18:14:21 +0200 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Fri, 20 Aug 2010 18:11:31 +0200 User-Agent: KMail/1.13.5 (FreeBSD/8.1-STABLE; KDE/4.4.5; amd64; ; ) References: <20100820134902.64744506.ray@dlink.ua> In-Reply-To: <20100820134902.64744506.ray@dlink.ua> X-Face: +~\`s("[*|O,="7?X@L.elg*F"OA\I/3%^p8g?ab%RN'(; _IjlA: hGE..Ew, XAQ*o#\/M~SC=S1-f9{EzRfT'|Hhll5Q]ha5Bt-s|oTlKMusi:1e[wJl}kd}GR Z0adGx-x_0zGbZj'e(Y[(UNle~)8CQWXW@:DX+9)_YlB[tIccCPN$7/L' MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201008201811.31398.hselasky@c2i.net> Cc: Subject: Re: patch: u3g + quirks: Add DTR/RTS support for QUALCOMM MSM6800 based modems X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Aug 2010 16:15:20 -0000 On Friday 20 August 2010 12:49:02 Alexandr Rybalko wrote: > Hi, > > The attached patch (also at http://my.ddteam.net/files/usb.serial.diff) add > support for DTR/RTS on QUALCOMM MSM6800 based modems (Known: AnyData > ADU-500A, ADU-510A). > > Please review and apply if the changes are okay. > Let me know if you have any comments. DTR and RTS are defined to the same value. Is this correct? +#define U3G_REG_LINE_CTRL_DTR 0x01 +#define U3G_REG_LINE_CTRL_RTS 0x01 --HPS