btstack/src/l2cap.h

24 lines
402 B
C
Raw Normal View History

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.
*/
#pragma once
2009-05-16 21:29:51 +00:00
#include "hci.h"
#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, ...);