updated todos

This commit is contained in:
matthias.ringwald 2009-07-30 21:48:30 +00:00
parent 31ce42f9cd
commit a2e6f504f0

View File

@ -1,26 +1,34 @@
/* new todo file for BTstack */ /* new todo file for BTstack */
UNTIL 13. August 2009 : Google Open Source Jam UNTIL 13. August 2009 : Google Open Source Jam
- implement L2CAP state machine (outgoing only) - take care for matching channels with signaling packets better - naming conventions for various layers
- test sig_id for incoming responses - - if all control is done by pseudo hci commands, only bt_send_cmd(&cmd_name, ... ) is needed
- test channel id for incoming requests ( - move L2CAP code from btstack.c to l2cap.c
- decide on naming conventions for various layers - connections are managed in BTdaemon
- decide where L2CAP state machine belongs - source_cids and signaling_ids are assigned in BTdaemon
- decide on l2CAP event/data interface - create pseudo hci commands for create/destroy l2cap channel
- client only sends L2CAP packets (or higher) - no need to send/receive raw ACL packets - implement new L2CAP data interface, similar to unix sockets
- provide demos: - send data (channel, data, len)
- BT Scanner: module info, inquiry, remote name - data callback(channel, data, len)
- Terminal app with L2CAP support - Python or Java PC demo - DEMOS:
- implement l2cap_send_packet - Python lightBlue: only L2CAP outgoing, or RFCOMM
- readline? own command line support? - BTstack-cmd
- evtl. SDP browser - info
- inquiry
- remote name
- open/close l2cap connection
- evtl. SDP browser
- evtl. WiiMote
- evtl. RFCOMM to BT GPS - evtl. RFCOMM to BT GPS
NEXT: NEXT:
- WiiMote - http://wiibrew.org/wiki/Wiimote#Bluetooth_Communication
- turn on accellerometer by sending packet 52 12 00 33 over PSM 0x13 OR 0x11
- implement rest of L2CAP state machine - implement rest of L2CAP state machine
- incoming - incoming
- error handling - error handling
- error notification - error notification
- reassembly is best done in BTdaemon, assigning source_cids too.
- client/server part using unix domain sockets (portable and fast) - client/server part using unix domain sockets (portable and fast)
- implement RFCOMM - implement RFCOMM
- implement - implement