summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2003-05-29 16:41:48 +0000
committerMarcel Holtmann <marcel@holtmann.org>2003-05-29 16:41:48 +0000
commit0ce9154a53a990998d0030a78e544ef8e8285352 (patch)
tree6f89015836b2dca5d82245905a068b32a98ae6fe
parentf6557046863c041920180d232c8f0a63bb2faf3c (diff)
Support for TDK, IBM and Socket cards
-rw-r--r--tools/hciattach.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/hciattach.c b/tools/hciattach.c
index 54980ded..05230d3c 100644
--- a/tools/hciattach.c
+++ b/tools/hciattach.c
@@ -758,7 +758,13 @@ struct uart_t uart[] = {
/* COM One Platinium Bluetooth PC Card */
{ "comone", 0xffff, 0x0101, HCI_UART_BCSP, 115200, 115200, 0, bcsp },
- { NULL, 0 }
+ /* TDK Bluetooth PC Card and IBM Bluetooth PC Card II */
+ { "tdk", 0x0105, 0x4254, HCI_UART_BCSP, 115200, 115200, 0, bcsp },
+
+ /* Socket Bluetooth CF Card (Rev G) */
+ { "socket", 0x0104, 0x0096, HCI_UART_BCSP, 230400, 230400, 0, bcsp },
+
+ { NULL, 0 }
};
struct uart_t * get_by_id(int m_id, int p_id)