From owner-freebsd-bluetooth@FreeBSD.ORG Mon Dec 6 18:08:29 2004 Return-Path: Delivered-To: freebsd-bluetooth@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C08016A4CE for ; Mon, 6 Dec 2004 18:08:29 +0000 (GMT) Received: from mailgate1b.savvis.net (mailgate1b.savvis.net [216.91.182.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FD6B43D4C for ; Mon, 6 Dec 2004 18:08:29 +0000 (GMT) (envelope-from Maksim.Yevmenkin@savvis.net) Received: from out001.email.savvis.net (out001.apptix.savvis.net [216.91.32.44])iB6I8GLU024523; Mon, 6 Dec 2004 12:08:16 -0600 Received: from s228130hz1ew17.apptix-01.savvis.net ([10.146.4.29]) by out001.email.savvis.net with Microsoft SMTPSVC(6.0.3790.211); Mon, 6 Dec 2004 12:08:10 -0600 Received: from [10.254.186.111] ([66.35.239.94]) by s228130hz1ew17.apptix-01.savvis.net with Microsoft SMTPSVC(6.0.3790.211); Mon, 6 Dec 2004 12:08:09 -0600 Message-ID: <41B49FFF.4090607@savvis.net> Date: Mon, 06 Dec 2004 10:07:59 -0800 From: Maksim Yevmenkin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040822 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Guillermo Sobalvarro References: <20041205160210.9536.qmail@web52604.mail.yahoo.com> In-Reply-To: <20041205160210.9536.qmail@web52604.mail.yahoo.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 06 Dec 2004 18:08:09.0818 (UTC) FILETIME=[8B289BA0:01C4DBBE] X-ECS-MailScanner: No virus is found cc: freebsd-bluetooth@freebsd.org Subject: Re: BT Serial X-BeenThere: freebsd-bluetooth@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Using Bluetooth in FreeBSD environments List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Dec 2004 18:08:29 -0000 Hello, > Hello list. I have AirCable USB and AirCable USB > Serial dongles that are BT technology, to implement > what is know as a "wireless clable" to, for example, > configure serial devices from a PC or laptop without > using a cable. > > On my setup the BT USB device connects to a USB port > on my laptop. The serial dongle (DB-9 Female) > connects to a DB-9 serial port on my router. I have > paired both devices. > > Under Linux with a simple: > > cu -l /dev/ttyUSB0 -s 115200 are you using bluetooth stack in linux? in other words is you usb device recognized as usb serial port or as bluetooth dongle? > I get an instant connection to my router and am able > to configure it. I can also use Minicomm with the > same results. It all works. > > Under FreeBSD I have not been able to find what device > to use. When connected, the USB device appears as > ugen0. I've tried doing a cu (replacing ttyUSB0 with > ugen0) to that but I first a "Connected" message; then > something about not being able to write to the device. ugen(4) is a *generic* usb device. ugen(4) driver is attached to the device when no other driver claims it. usb serial ports, modems etc. are implemeted with ucom(4), uftdi(4), umct(4) and umodem(4) drivers. > Anyone know how I could get these to work under > FreeBSD? Thanks in advance. if your device present itself as usb serial port then try to load appropriate drivers (see above). if device presents itself as bluetooth dongle then you need to run bluetooth stack and rfcomm_sppd(1). thanks, max