aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/Incomplete/BluetoothHost/Lib/SDPServices.c
Commit message (Collapse)AuthorAgeFilesLines
* Changed the RFCOMM-specific ItemProtocolChannel_t type to a more generic ↵Dean Camera2010-06-151-5/+5
| | | | ItemProtocol_8BitParam_t name, and added a new ItemProtocol_16BitParam_t to the SDP protocol type defines.
* Add the svn:eol-style property onto new files which where missing it to ↵Dean Camera2010-06-061-183/+183
| | | | ensure uniform line endings.
* Document Bluetooth files with overall file Doxygen comments. Add more ↵Dean Camera2010-06-041-3/+34
| | | | initial RFCOMM layer code to receive and respond to SABM packets.
* Minor documentation cleanups.Dean Camera2010-06-031-1/+1
|
* Extra protocol value in the RFCOMM protocol is the channel number, not the ↵Dean Camera2010-06-031-7/+7
| | | | | | PSM - update typedef name and size. Add delay to the Connection Request signal processing routine - without this, the host will not create the RFCOMM channel correctly. Need to investigate why this delay is needed.
* Add PSM value to the RFCOMM service so that the host knows what PSM to use ↵Dean Camera2010-06-031-35/+34
| | | | on channels when trying to access it.
* Add start of RFCOMM service layer to the incomplete BluetoothHost demo.Dean Camera2010-06-031-1/+1
| | | | Reduce the size of the attribute search list from 15 ranges to 8 to save RAM.
* Fix byte ordering of UUIDs in the SDP server - host can now successfully ↵Dean Camera2010-06-021-24/+24
| | | | pair to the Bluetooth device and discover the exposed Serial Port Profile RFCOMM service.
* The SDP UUID lists should be searched and ALL UUIDs matched for a record to ↵Dean Camera2010-06-021-171/+34
| | | | | | | | be retrieved, not partial matches. Change the SDP code so that the entire list must be matched against a service attribute table's contents before it is returned. Change matching algorithm so that it recursively searches through the entire attribute table, and not just pre-specified sequence attributes. Add browse lists and proper descriptions to the Serial Port service.
* Add L2CAP service attribute table. Fix up ProtocolDescriptorList attributes, ↵Dean Camera2010-06-021-28/+122
| | | | and add macros for used UUIDs to reduce typing and make the code easier to read.
* Clean up the Service tables, add incomplete ProtocolDescriptorList attribute ↵Dean Camera2010-06-011-45/+68
| | | | to the SDP service.
* Remove incorrect Language ID offset attribute from the SDP server - client ↵Dean Camera2010-06-011-17/+0
| | | | assumes 0x0100 offset for primary language anyway, and the format of the offset was incorrect anyway.
* Much faster attribute range lookup - look through short list of attributes ↵Dean Camera2010-06-011-23/+39
| | | | | | and compare to range, rather than looking up by each possible value within the range. Cleanups to SDP code. Add missing RFCOMM language base ID offset attribute. Fix incorrect definition of the SWAPENDIAN_32() macro.
* Fix the encoding of UUIDs in the SDP server so that they match the Bluetooth ↵Dean Camera2010-06-011-6/+6
| | | | UUID format properly.
* Move SDP service tables out into a new set of files, to make the SDP service ↵Dean Camera2010-06-011-0/+174
code cleaner.