<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dummydummy</id>
	<title>ThinkWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dummydummy"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Dummydummy"/>
	<updated>2026-05-22T21:17:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Bluetooth_Daughter_Card_(14_pins)&amp;diff=38767</id>
		<title>Bluetooth Daughter Card (14 pins)</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Bluetooth_Daughter_Card_(14_pins)&amp;diff=38767"/>
		<updated>2008-09-06T15:14:00Z</updated>

		<summary type="html">&lt;p&gt;Dummydummy: removed parsing commandline return value - it is sufficient to check $? (checked in Gentoo)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|style=&amp;quot;vertical-align:top&amp;quot; |[[Image:Logo_bluetooth.jpg|Bluetooth Logo]]&lt;br /&gt;
|style=&amp;quot;vertical-align:top&amp;quot; |&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin:0px; border: 1px solid #dfdfdf; padding: 0em 1em 1em 1em; background-color:#F8F8FF; align:right;&amp;quot;&amp;gt;&lt;br /&gt;
=== ThinkPad Bluetooth with Enhanced Data Rate (BDC-2) ===&lt;br /&gt;
This is a USB Bluetooth Adapter that is installed in a [[CDC slot]] in the screen assembly.&lt;br /&gt;
=== Features ===&lt;br /&gt;
* Chipset: Broadcom&lt;br /&gt;
* Model: BCM2045B&lt;br /&gt;
* USB VID/PID: 0A5C:2110&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== IBM Partnumbers ===&lt;br /&gt;
IBM FRU PN: 39T0497&lt;br /&gt;
&lt;br /&gt;
=== Linux Driver ===&lt;br /&gt;
&lt;br /&gt;
The Bluetooth adapter uses the '''hci_usb''' driver {{kernelconf|CONFIG_BT_HCIUSB||||||}}.&lt;br /&gt;
&lt;br /&gt;
One can enable Bluetooth by pressing {{key|Fn}}{{key|F5}}.  If this doesn't work, you can load the [[ibm-acpi|ibm_acpi]] or [[ibm-acpi|thinkpad_acpi]] kernel module and run the following command with root privileges:&lt;br /&gt;
&lt;br /&gt;
{{cmdroot|echo &amp;quot;enable&amp;quot; &amp;gt; /proc/acpi/ibm/bluetooth}}&lt;br /&gt;
&lt;br /&gt;
When Bluetooth is enabled, the Bluetooth-logo LED will light up and executing {{cmdroot|lsusb}} will show an entry mentioning &amp;quot;Broadcom&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
On recent ThinkPads the Wireless killswitch disables both WiFi and Bluetooth (verified on a ThinkPad Z60m, Z61t, T60, T61 and X61).&lt;br /&gt;
&lt;br /&gt;
=== Set Fn + F5 as hotkey to enable/disable Bluetooth ===&lt;br /&gt;
If the {{key|Fn}}{{key|F5}} combo doesn't work for you out-of-box, you can easily use Linux ACPI subsystem to enable and disable Bluetooh. You only need to create two small files (shown below). Note that you need to have &amp;lt;code&amp;gt;acpid&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;thinkpad_acpi&amp;lt;/code&amp;gt; installed and properly working. The following scripts were tested on openSUSE 10.3.&lt;br /&gt;
==== ACPI action script ====&lt;br /&gt;
&amp;lt;pre&amp;gt;# cat /etc/acpi/actions/bluetooth&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
# Bluetooth enable/disable script&lt;br /&gt;
&lt;br /&gt;
/etc/init.d/bluetooth status&lt;br /&gt;
&lt;br /&gt;
if [ &amp;quot;$?&amp;quot; -ne 0 ]; then&lt;br /&gt;
        /etc/init.d/bluetooth start &amp;gt; /dev/null&lt;br /&gt;
        echo enabled &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
        echo &amp;quot;Bluetooth enabled&amp;quot;&lt;br /&gt;
else&lt;br /&gt;
        /etc/init.d/bluetooth stop &amp;gt; /dev/null&lt;br /&gt;
        echo disabled &amp;gt; /proc/acpi/ibm/bluetooth&lt;br /&gt;
        echo &amp;quot;Bluetooth disabled&amp;quot;&lt;br /&gt;
fi&amp;lt;/pre&amp;gt;&lt;br /&gt;
This script, when executed, detects the current state of Bluetooth subsystem and changes it to the opposite state.&lt;br /&gt;
&lt;br /&gt;
==== ACPI event handler ====&lt;br /&gt;
&amp;lt;pre&amp;gt;# cat /etc/acpi/events/bluetooth&lt;br /&gt;
event=ibm/hotkey HKEY 00000080 00001005&lt;br /&gt;
action=/etc/acpi/actions/bluetooth&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;acpid&amp;lt;/code&amp;gt;, once detects Fn + F5 keypress, runs the given script which disables or enables Bluetooth (and changes state of indication LED).&lt;br /&gt;
&lt;br /&gt;
=== See Also ===&lt;br /&gt;
* [[How_to_setup_Bluetooth|How to Setup Bluetooth]]&lt;br /&gt;
&lt;br /&gt;
=== ThinkPads Using This Device ===&lt;br /&gt;
* {{Z60m}}, {{Z60t}}, {{Z61t}}&lt;br /&gt;
* {{R60}}, {{R61}}&lt;br /&gt;
* {{T60}}, {{T60p}}, {{T61}}, {{T61p}}&lt;br /&gt;
* {{X200}}&lt;br /&gt;
&lt;br /&gt;
=== External Sources ===&lt;br /&gt;
*[http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-51427 IBM's page about configuring Bluetooth under Linux]&lt;br /&gt;
*[http://www.broadcom.com/products/Bluetooth/Bluetooth-RF-Silicon-and-Software-Solutions/BCM2045 Broadcom BCM2045 Product]&lt;br /&gt;
*[http://blogs.ebay.com.hk/lingqi-tech/archive/2007/12 Compare CDC slot types and CDC Bluetooth Cards for various ThinkPad Models]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Components]]&lt;/div&gt;</summary>
		<author><name>Dummydummy</name></author>
		
	</entry>
</feed>