Nordic stack and drivers for the mbed BLE API
Dependents: BLE_Health_Thermometer2
Fork of nRF51822 by
Diff: nordic/nrf-sdk/s110/ble_l2cap.h
- Revision:
- 37:c29c330d942c
- Parent:
- 0:eff01767de02
--- a/nordic/nrf-sdk/s110/ble_l2cap.h Thu Jul 03 10:01:02 2014 +0100 +++ b/nordic/nrf-sdk/s110/ble_l2cap.h Mon Jul 07 13:43:31 2014 +0100 @@ -14,12 +14,14 @@ #ifndef BLE_L2CAP_H__ #define BLE_L2CAP_H__ -#include "nordic_global.h" #include "ble_types.h" #include "ble_ranges.h" #include "ble_err.h" #include "nrf_svc.h" +/**@addtogroup BLE_L2CAP_ENUMERATIONS Enumerations + * @{ */ + /**@brief L2CAP API SVC numbers. */ enum BLE_L2CAP_SVCS { @@ -28,6 +30,8 @@ SD_BLE_L2CAP_TX /**< Transmit a packet. */ }; +/** @} */ + /**@addtogroup BLE_L2CAP_DEFINES Defines * @{ */ @@ -50,6 +54,9 @@ /** @} */ +/**@addtogroup BLE_L2CAP_STRUCTURES Structures + * @{ */ + /**@brief Packet header format for L2CAP transmission. */ typedef struct { @@ -128,6 +135,7 @@ */ SVCALL(SD_BLE_L2CAP_TX, uint32_t, sd_ble_l2cap_tx(uint16_t conn_handle, ble_l2cap_header_t const * const p_header, uint8_t const * const p_data)); +/** @} */ #endif // BLE_L2CAP_H__