diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2004-06-23 16:30:41 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2004-06-23 16:30:41 +0000 |
commit | 587fe743849609dd150666d84f8fa53cd403a70e (patch) | |
tree | d6a86cf30b65071ab8567677f257a7996a5ced7b | |
parent | a40e152629d99aa0d64bfd4da689b4d524b440ce (diff) |
Add support for AmbiCom BT2000C card
-rw-r--r-- | pcmcia/bluetooth.conf | 4 | ||||
-rw-r--r-- | tools/hciattach.c | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/pcmcia/bluetooth.conf b/pcmcia/bluetooth.conf index 42f824fa..79ef717d 100644 --- a/pcmcia/bluetooth.conf +++ b/pcmcia/bluetooth.conf @@ -26,6 +26,10 @@ card "Brain Boxes BL-620 Bluetooth Adapter" version "Brain Boxes", "Bluetooth PC Card" bind "serial_cs" class "bluetooth" +card "AmbiCom BT2000C Bluetooth PC/CF Card" + version ""AmbiCom BT2000C", "Bluetooth PC/CF Card" + bind "serial_cs" class "bluetooth" + card "COM One Platinium Bluetooth PC Card" version "COM1 SA", "MC310 CARD" bind "serial_cs" class "bluetooth" diff --git a/tools/hciattach.c b/tools/hciattach.c index 50432ec3..2024c1de 100644 --- a/tools/hciattach.c +++ b/tools/hciattach.c @@ -833,6 +833,9 @@ struct uart_t uart[] = { /* 3Com Bluetooth Card (Version 3.0) */ { "3com", 0x0101, 0x0041, HCI_UART_H4, 115200, 115200, FLOW_CTL, csr }, + /* AmbiCom BT2000C Bluetooth PC/CF Card */ + { "bt2000c", 0x022d, 0x2000, HCI_UART_H4, 57600, 460800, FLOW_CTL, csr }, + { NULL, 0 } }; |