From owner-freebsd-bluetooth@FreeBSD.ORG Wed Mar 18 03:22:53 2015 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D955FEA0 for ; Wed, 18 Mar 2015 03:22:53 +0000 (UTC) Received: from mail-pd0-x230.google.com (mail-pd0-x230.google.com [IPv6:2607:f8b0:400e:c02::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 975D1DCE for ; Wed, 18 Mar 2015 03:22:53 +0000 (UTC) Received: by pdnc3 with SMTP id c3so29099701pdn.0 for ; Tue, 17 Mar 2015 20:22:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=references:mime-version:in-reply-to:content-type :content-transfer-encoding:message-id:cc:from:subject:date:to; bh=DMrSP4s9FkymTI9hYFzE0N0l4bSEDxUngCscsVhKxDg=; b=ylDIVWMGNQ3w8ddPG9D3wcMrpZLAku8mp3RECASS5n8UQAlU+kxYBfW3xURSZyq3FS I/C1AfqyzC58GbLYTBYrlJ2+6b/6j3BLvCQFUaYqBKHlb4Cz022ZyshjXHi53pTtXEsP q9Q65kRIBTEVc74oUC55asCUaU5DzU7TIkhBB+V65kF1yLQtNlw6s8UqTc3l+Zd2K4nL Otarr5MPf0WIKxMq1WHSCmukc6+t9+pPBdv5R1Rh8lz9m393iH/pdV1FJOgDcAMD58wB ohePpMC7HhTFH7TZ+nxLqtxiWwqOwGuaBTCSfNpv7o/4UHGjg+8fD9C4hPTf2uKktmud jdWg== X-Received: by 10.70.94.101 with SMTP id db5mr1656069pdb.62.1426648972848; Tue, 17 Mar 2015 20:22:52 -0700 (PDT) Received: from [10.1.10.41] (c-67-170-236-210.hsd1.ca.comcast.net. [67.170.236.210]) by mx.google.com with ESMTPSA id pi2sm24728928pdb.47.2015.03.17.20.22.52 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 17 Mar 2015 20:22:52 -0700 (PDT) References: <0AD7A2F7-37BE-4F6A-9FD6-F6C81B2CAF36@gmail.com> Mime-Version: 1.0 (1.0) In-Reply-To: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Message-Id: <1AF1A5DD-44EC-4A76-AB1E-236ED2DC622B@gmail.com> X-Mailer: iPad Mail (12D508) From: Maksim Yevmenkin Subject: Re: register HID with SDP error Date: Tue, 17 Mar 2015 20:22:51 -0700 To: Waitman Gobble Cc: "freebsd-bluetooth@freebsd.org" , Iain Hibbert X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Mar 2015 03:22:53 -0000 > I'm still troubled by the bluetooth errors though.. I wish I could > solve that problem. This device reports mfg 0x0a12 product 0x0001 > (well idProduct is 0x0001, iProduct is 0x0002?) >=20 Hmmm.... I think I might have an idea. Do you run /etc/rc.d/bluetooth by han= d by any chance ? If so, can you please do not do it? Basically /etc/rc.d/Bl= uetooth is run from devd.conf currently. Devd responds to ubt device arrival= by calling start on /etc/rc.d/Bluetooth. Similarly when ubt device departs d= evd will call stop on /etc/rc.d/Bluetooth. When you call start on /etc/rc.d/Bluetooth on already setup stack, you might= get errors. So either try not calling start by hand, or, try to call resta= rt. Restart will tear down struck and then set it up from scratch.=20 Thanks Max