2009-05-16 21:29:51 +00:00
|
|
|
/*
|
|
|
|
* l2cap.h
|
|
|
|
*
|
|
|
|
* Logical Link Control and Adaption Protocl (L2CAP)
|
|
|
|
*
|
|
|
|
* Created by Matthias Ringwald on 5/16/09.
|
|
|
|
*/
|
|
|
|
|
2009-07-14 20:41:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
2009-05-16 21:29:51 +00:00
|
|
|
#include "hci.h"
|
2009-07-23 21:55:36 +00:00
|
|
|
#include "l2cap_signaling.h"
|
2009-05-16 21:29:51 +00:00
|
|
|
|
2009-05-17 20:32:14 +00:00
|
|
|
typedef struct {
|
|
|
|
|
|
|
|
} l2cap_channel_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
|
|
|
} l2cap_service_t;
|
|
|
|
|
2009-05-16 21:29:51 +00:00
|
|
|
void l2cap_init();
|
|
|
|
int l2cap_send_signaling_packet(hci_con_handle_t handle, L2CAP_SIGNALING_COMMANDS cmd, uint8_t identifier, ...);
|