Start implementation of RFCOMM decoding layer. Add new service initialize routines for each Bluetooth service - currently unused, but will eventually reset the service state of RFCOMM when a new connection is made.
This commit is contained in:
parent
13d812a718
commit
9293de2491
5 changed files with 111 additions and 1 deletions
|
@ -40,6 +40,12 @@ const ServiceAttributeTable_t* SDP_Services_Table[] PROGMEM =
|
|||
/** Base UUID value common to all standardized Bluetooth services */
|
||||
const UUID_t BaseUUID PROGMEM = {0x00000000, BASE_80BIT_UUID};
|
||||
|
||||
/** Initializes the SDP service, ready for new connections from a SDP client. */
|
||||
void SDP_Initialize(void)
|
||||
{
|
||||
/* Not currently used */
|
||||
}
|
||||
|
||||
/** Main Service Discovery Protocol packet processing routine. This function processes incomming SDP packets from
|
||||
* a connected Bluetooth device, and sends back appropriate responses to allow other devices to determine the
|
||||
* services the local device exposes.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue