Date: Fri, 9 Apr 2004 17:18:00 -0700 (PDT) From: Maksim Yevmenkin <emax@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/bluetooth/bthidcontrol Makefilebthidcontrol.8 bthidcontrol.c bthidcontrol.h hid.c sdp.c src/usr.sbin/bluetooth/bthidd Makefile bthid_config.h bthidd.c bthidd.conf.sample bthidd.h client.c hid.c lexer.l parser.y ... Message-ID: <200404100018.i3A0I02o096339@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
emax 2004/04/09 17:18:00 PDT FreeBSD src repository Added files: usr.sbin/bluetooth/bthidcontrol Makefile bthidcontrol.8 bthidcontrol.c bthidcontrol.h hid.c sdp.c usr.sbin/bluetooth/bthidd Makefile bthid_config.h bthidd.c bthidd.conf.sample bthidd.h client.c hid.c lexer.l parser.y server.c session.c Log: Start committing Bluetooth HID (Human Interface Device) support. Note: bthidd(8) is still not complete. Need to commit kernel support (a-la Linux /dev/input) to feed HID events into kernel. Also need to write bthidd(8) and bthidd.conf(5) man pages. Revision Changes Path 1.1 +15 -0 src/usr.sbin/bluetooth/bthidcontrol/Makefile (new) 1.1 +99 -0 src/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.8 (new) 1.1 +208 -0 src/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.c (new) 1.1 +50 -0 src/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.h (new) 1.1 +209 -0 src/usr.sbin/bluetooth/bthidcontrol/hid.c (new) 1.1 +432 -0 src/usr.sbin/bluetooth/bthidcontrol/sdp.c (new) 1.1 +14 -0 src/usr.sbin/bluetooth/bthidd/Makefile (new) 1.1 +67 -0 src/usr.sbin/bluetooth/bthidd/bthid_config.h (new) 1.1 +256 -0 src/usr.sbin/bluetooth/bthidd/bthidd.c (new) 1.1 +72 -0 src/usr.sbin/bluetooth/bthidd/bthidd.conf.sample (new) 1.1 +88 -0 src/usr.sbin/bluetooth/bthidd/bthidd.h (new) 1.1 +244 -0 src/usr.sbin/bluetooth/bthidd/client.c (new) 1.1 +262 -0 src/usr.sbin/bluetooth/bthidd/hid.c (new) 1.1 +100 -0 src/usr.sbin/bluetooth/bthidd/lexer.l (new) 1.1 +447 -0 src/usr.sbin/bluetooth/bthidd/parser.y (new) 1.1 +316 -0 src/usr.sbin/bluetooth/bthidd/server.c (new) 1.1 +136 -0 src/usr.sbin/bluetooth/bthidd/session.c (new)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200404100018.i3A0I02o096339>