1 # $NetBSD: files.bluetooth,v 1.8 2006/07/26 10:31:00 tron Exp $ 2 # 3 # Config file for machine independent Bluetooth devices 4 5 # Bluetooth Devices 6 defpseudo btdev { } 7 file dev/bluetooth/btdev.c btdev 8 9 # HID "bus" 10 define bthidbus {[ reportid = -1 ]} 11 12 # HID Device 13 device bthidev: bluetooth, bthidbus, hid 14 attach bthidev at btdev 15 file dev/bluetooth/bthidev.c bthidev 16 17 # HID Keyboards 18 defflag opt_btkbd.h BTKBD_REPEAT 19 defparam opt_btkbd.h BTKBD_LAYOUT 20 device btkbd: hid, wskbddev 21 attach btkbd at bthidbus 22 file dev/bluetooth/btkbd.c btkbd 23 24 # HID Mice 25 device btms: hid, wsmousedev 26 attach btms at bthidbus 27 file dev/bluetooth/btms.c btms 28 29 # Audio Headsets 30 device bthset: bluetooth, audiobus, auconv, mulaw, aurateconv 31 attach bthset at btdev 32 file dev/bluetooth/bthset.c bthset 33