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:
Dean Camera 2010-06-03 12:45:15 +00:00
parent 13d812a718
commit 9293de2491
5 changed files with 111 additions and 1 deletions

View file

@ -38,6 +38,7 @@
/* Includes: */
#include <avr/io.h>
#include <avr/pgmspace.h>
#include <string.h>
#include <stdbool.h>
#include <stdio.h>
@ -210,6 +211,7 @@
}
/* Function Prototypes: */
void SDP_Initialize(void);
void SDP_ProcessPacket(void* Data, Bluetooth_Channel_t* const Channel);
#if defined(INCLUDE_FROM_SERVICEDISCOVERYPROTOCOL_C)