l2cap_signaling.h (ab2b01dc721a25e3dddde6bea45be468bdbd821e) | l2cap_signaling.h (f471afd8963ca1a5b914db0cbb3471db087f44b8) |
---|---|
1/* 2 * Copyright (C) 2009-2012 by Matthias Ringwald 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright --- 26 unchanged lines hidden (view full) --- 35 */ 36 37/* 38 * l2cap_signaling.h 39 * 40 * Created by Matthias Ringwald on 7/23/09. 41 */ 42 | 1/* 2 * Copyright (C) 2009-2012 by Matthias Ringwald 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright --- 26 unchanged lines hidden (view full) --- 35 */ 36 37/* 38 * l2cap_signaling.h 39 * 40 * Created by Matthias Ringwald on 7/23/09. 41 */ 42 |
43#pragma once | 43#ifndef __L2CAP_SIGNALING_H 44#define __L2CAP_SIGNALING_H |
44 45#include <stdint.h> 46#include <stdarg.h> 47#include <btstack/utils.h> 48#include <btstack/hci_cmds.h> 49 50#if defined __cplusplus 51extern "C" { --- 19 unchanged lines hidden (view full) --- 71uint16_t l2cap_le_create_connection_parameter_update_request(uint8_t * acl_buffer, uint16_t handle, uint16_t interval_min, uint16_t interval_max, uint16_t slave_latency, uint16_t timeout_multiplier); 72uint8_t l2cap_next_sig_id(void); 73uint16_t l2cap_next_local_cid(void); 74 75#if defined __cplusplus 76} 77#endif 78 | 45 46#include <stdint.h> 47#include <stdarg.h> 48#include <btstack/utils.h> 49#include <btstack/hci_cmds.h> 50 51#if defined __cplusplus 52extern "C" { --- 19 unchanged lines hidden (view full) --- 72uint16_t l2cap_le_create_connection_parameter_update_request(uint8_t * acl_buffer, uint16_t handle, uint16_t interval_min, uint16_t interval_max, uint16_t slave_latency, uint16_t timeout_multiplier); 73uint8_t l2cap_next_sig_id(void); 74uint16_t l2cap_next_local_cid(void); 75 76#if defined __cplusplus 77} 78#endif 79 |
80#endif // __L2CAP_SIGNALING_H |
|