2009-06-06 17:43:50 +00:00
|
|
|
/* new todo file for BTstack */
|
|
|
|
|
2009-11-12 21:30:18 +00:00
|
|
|
2009-11-08: Release 0.1
|
2009-11-06 21:19:35 +00:00
|
|
|
|
2009-11-12 21:30:18 +00:00
|
|
|
NEXT:
|
2010-06-13 15:46:31 +00:00
|
|
|
- implement SDP
|
|
|
|
- test SDP implementation against Mac/Linux Service Discovery
|
|
|
|
|
|
|
|
== Release Version 0.2
|
|
|
|
- move RFCOMM code into BTdaemon
|
2010-05-26 20:15:30 +00:00
|
|
|
- add extern "C" to bstack methods
|
|
|
|
- see: http://stackoverflow.com/questions/376966/using-c-c-static-libraries-from-iphone-objectivec-apps
|
2010-01-28 07:39:30 +00:00
|
|
|
- figure out how to receive iPhone System Power IONotifications (in BTdaemon) to detect, when phone gets locked
|
2010-03-14 16:28:18 +00:00
|
|
|
- add timeouts to cocoa run loop
|
2010-02-13 15:15:45 +00:00
|
|
|
- L2CAP
|
|
|
|
- segmentation
|
2009-09-15 21:19:19 +00:00
|
|
|
- extend SpringBoard feedback
|
|
|
|
- show alerts/messages using SpringBoardAcccess, e.g. Bluetooth disconnected by remote device
|
|
|
|
- add code to notify about remote disconnets
|
2009-08-09 23:05:55 +00:00
|
|
|
- configuration: /etc/btstack
|
|
|
|
- single Bluetooth module supported
|
|
|
|
- transport type: H4, H5, USB
|
2009-08-30 20:15:17 +00:00
|
|
|
- h4/h5: UART path
|
2009-08-09 23:05:55 +00:00
|
|
|
- usb: product/vendor ID
|
|
|
|
- logging mode: text, bluez, packetlogger
|
2009-08-05 11:23:46 +00:00
|
|
|
- implement rest of L2CAP state machine
|
|
|
|
- error handling
|
|
|
|
- error notification
|
|
|
|
- flow control
|
2010-01-28 07:39:30 +00:00
|
|
|
- add configure option for uart flowcontrol
|
|
|
|
- create <btstack/errors.h>
|
2010-06-13 15:46:31 +00:00
|
|
|
- Bluetooth low-power modes useful
|
2009-08-05 11:23:46 +00:00
|
|
|
|
2010-06-13 15:46:31 +00:00
|
|
|
== USB Support ==
|
|
|
|
- Store array of data sources to be able to remove them on usb_close
|
|
|
|
|
|
|
|
== Objective-C Interface ==
|
|
|
|
- move connection methods to BTdevice (get more object oriented)
|
|
|
|
- initWithAddress:(bd_addr_t *)addr
|
|
|
|
- setters private
|
|
|
|
- implement l2cap code
|
|
|
|
- implement rfcomm code
|
|
|
|
- animate discovery dialog:
|
|
|
|
* use indexPathsForVisibleRows and cellForRowAtIndexPath: when you want to refresh just the cells that are on the screen
|
|
|
|
* use insertRowsAtIndexPaths:withRowAnimation: to add rows
|
|
|
|
* use deleteRowsAtIndexPaths:withRowAnimation: to remove them-
|
2009-08-05 11:23:46 +00:00
|
|
|
|
2010-06-13 15:46:31 +00:00
|
|
|
== Refactor/Improve Architecture ==
|
|
|
|
- use single standard packet handler for acl & events
|
|
|
|
- hci_transport -> hci
|
|
|
|
- hci -> l2cap
|
|
|
|
- l2cap -> daemon
|
|
|
|
- add linked_list_iterator that can remove elements (used by l2cap_close_connection and sdp_unregister_services_for_connection
|
|
|
|
- clean up control flow
|
|
|
|
- l2cap directly sends data over socket: good/bad?
|
|
|
|
- split daemon into stack parts
|
|
|
|
- should there be STACK API/interface?
|
2009-09-29 19:49:34 +00:00
|
|
|
- unify packet generation
|
|
|
|
- btstack events
|
|
|
|
- cmd packets
|
|
|
|
- l2cap commands
|
2009-07-31 21:41:15 +00:00
|
|
|
- auto-generate code for sending commands from structured text input file
|
|
|
|
- devise concept for access to event data
|
|
|
|
- auto-generate event struct getter? STRUCTURE_get_FIELD
|