ble_gap_evt_conn.h 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  1. /**
  2. * Copyright (c) 2014 - 2020, Nordic Semiconductor ASA
  3. *
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without modification,
  7. * are permitted provided that the following conditions are met:
  8. *
  9. * 1. Redistributions of source code must retain the above copyright notice, this
  10. * list of conditions and the following disclaimer.
  11. *
  12. * 2. Redistributions in binary form, except as embedded into a Nordic
  13. * Semiconductor ASA integrated circuit in a product or a software update for
  14. * such product, must reproduce the above copyright notice, this list of
  15. * conditions and the following disclaimer in the documentation and/or other
  16. * materials provided with the distribution.
  17. *
  18. * 3. Neither the name of Nordic Semiconductor ASA nor the names of its
  19. * contributors may be used to endorse or promote products derived from this
  20. * software without specific prior written permission.
  21. *
  22. * 4. This software, with or without modification, must only be used with a
  23. * Nordic Semiconductor ASA integrated circuit.
  24. *
  25. * 5. Any software provided in binary form under this license must not be reverse
  26. * engineered, decompiled, modified and/or disassembled.
  27. *
  28. * THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
  29. * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30. * OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
  31. * DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
  32. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  33. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  34. * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  35. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  36. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  37. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  38. *
  39. */
  40. #ifndef BLE_GAP_EVT_CONN_H__
  41. #define BLE_GAP_EVT_CONN_H__
  42. /**@file
  43. *
  44. * @defgroup ble_gap_evt_conn GAP Connectivity event encoders
  45. * @{
  46. * @ingroup ser_conn_s130_codecs
  47. *
  48. * @brief GAP Connectivity event encoders.
  49. */
  50. #include "ble.h"
  51. #ifdef __cplusplus
  52. extern "C" {
  53. #endif
  54. /**
  55. * @brief Encodes ble_gap_evt_auth_key_request event.
  56. *
  57. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  58. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  59. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  60. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  61. * \c out: Length of encoded contents in \p p_buf.
  62. *
  63. * @retval NRF_SUCCESS Encoding success.
  64. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  65. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  66. */
  67. uint32_t ble_gap_evt_auth_key_request_enc(ble_evt_t const * const p_event,
  68. uint32_t event_len,
  69. uint8_t * const p_buf,
  70. uint32_t * const p_buf_len);
  71. /**
  72. * @brief Encodes ble_gap_evt_auth_status event.
  73. *
  74. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  75. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  76. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  77. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  78. * \c out: Length of encoded contents in \p p_buf.
  79. *
  80. * @retval NRF_SUCCESS Encoding success.
  81. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  82. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  83. */
  84. uint32_t ble_gap_evt_auth_status_enc(ble_evt_t const * const p_event,
  85. uint32_t event_len,
  86. uint8_t * const p_buf,
  87. uint32_t * const p_buf_len);
  88. /**
  89. * @brief Encodes ble_gap_evt_conn_param_update event.
  90. *
  91. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  92. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  93. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  94. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  95. * \c out: Length of encoded contents in \p p_buf.
  96. *
  97. * @retval NRF_SUCCESS Encoding success.
  98. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  99. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  100. */
  101. uint32_t ble_gap_evt_conn_param_update_enc(ble_evt_t const * const p_event,
  102. uint32_t event_len,
  103. uint8_t * const p_buf,
  104. uint32_t * const p_buf_len);
  105. /**
  106. * @brief Encodes ble_gap_evt_conn_sec_update event.
  107. *
  108. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  109. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  110. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  111. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  112. * \c out: Length of encoded contents in \p p_buf.
  113. *
  114. * @retval NRF_SUCCESS Encoding success.
  115. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  116. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  117. */
  118. uint32_t ble_gap_evt_conn_sec_update_enc(ble_evt_t const * const p_event,
  119. uint32_t event_len,
  120. uint8_t * const p_buf,
  121. uint32_t * const p_buf_len);
  122. /**
  123. * @brief Encodes ble_gap_evt_connected event.
  124. *
  125. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  126. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  127. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  128. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  129. * \c out: Length of encoded contents in \p p_buf.
  130. *
  131. * @retval NRF_SUCCESS Encoding success.
  132. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  133. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  134. */
  135. uint32_t ble_gap_evt_connected_enc(ble_evt_t const * const p_event,
  136. uint32_t event_len,
  137. uint8_t * const p_buf,
  138. uint32_t * const p_buf_len);
  139. /**
  140. * @brief Encodes ble_gap_evt_disconnected event.
  141. *
  142. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  143. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  144. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  145. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  146. * \c out: Length of encoded contents in \p p_buf.
  147. *
  148. * @retval NRF_SUCCESS Encoding success.
  149. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  150. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  151. */
  152. uint32_t ble_gap_evt_disconnected_enc(ble_evt_t const * const p_event,
  153. uint32_t event_len,
  154. uint8_t * const p_buf,
  155. uint32_t * const p_buf_len);
  156. /**
  157. * @brief Encodes ble_gap_evt_passkey_display event.
  158. *
  159. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  160. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  161. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  162. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  163. * \c out: Length of encoded contents in \p p_buf.
  164. *
  165. * @retval NRF_SUCCESS Encoding success.
  166. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  167. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  168. */
  169. uint32_t ble_gap_evt_passkey_display_enc(ble_evt_t const * const p_event,
  170. uint32_t event_len,
  171. uint8_t * const p_buf,
  172. uint32_t * const p_buf_len);
  173. /**
  174. * @brief Encodes ble_gap_evt_rssi_changed event.
  175. *
  176. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  177. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  178. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  179. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  180. * \c out: Length of encoded contents in \p p_buf.
  181. *
  182. * @retval NRF_SUCCESS Encoding success.
  183. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  184. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  185. */
  186. uint32_t ble_gap_evt_rssi_changed_enc(ble_evt_t const * const p_event,
  187. uint32_t event_len,
  188. uint8_t * const p_buf,
  189. uint32_t * const p_buf_len);
  190. /**
  191. * @brief Encodes ble_gap_evt_sec_info_request event.
  192. *
  193. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  194. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  195. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  196. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  197. * \c out: Length of encoded contents in \p p_buf.
  198. *
  199. * @retval NRF_SUCCESS Encoding success.
  200. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  201. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  202. */
  203. uint32_t ble_gap_evt_sec_info_request_enc(ble_evt_t const * const p_event,
  204. uint32_t event_len,
  205. uint8_t * const p_buf,
  206. uint32_t * const p_buf_len);
  207. /**
  208. * @brief Encodes ble_gap_evt_sec_params_request event.
  209. *
  210. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  211. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  212. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  213. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  214. * \c out: Length of encoded contents in \p p_buf.
  215. *
  216. * @retval NRF_SUCCESS Encoding success.
  217. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  218. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  219. */
  220. uint32_t ble_gap_evt_sec_params_request_enc(ble_evt_t const * const p_event,
  221. uint32_t event_len,
  222. uint8_t * const p_buf,
  223. uint32_t * const p_buf_len);
  224. /**
  225. * @brief Encodes ble_gap_evt_timeout event.
  226. *
  227. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  228. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  229. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  230. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  231. * \c out: Length of encoded contents in \p p_buf.
  232. *
  233. * @retval NRF_SUCCESS Encoding success.
  234. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  235. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  236. */
  237. uint32_t ble_gap_evt_timeout_enc(ble_evt_t const * const p_event,
  238. uint32_t event_len,
  239. uint8_t * const p_buf,
  240. uint32_t * const p_buf_len);
  241. /**
  242. * @brief Encodes ble_gap_evt_sec_request event.
  243. *
  244. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  245. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  246. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  247. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  248. * \c out: Length of encoded contents in \p p_buf.
  249. *
  250. * @retval NRF_SUCCESS Encoding success.
  251. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  252. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  253. */
  254. uint32_t ble_gap_evt_sec_request_enc(ble_evt_t const * const p_event,
  255. uint32_t event_len,
  256. uint8_t * const p_buf,
  257. uint32_t * const p_buf_len);
  258. /**
  259. * @brief Encodes ble_gap_evt_conn_param_update_request event.
  260. *
  261. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  262. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  263. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  264. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  265. * \c out: Length of encoded contents in \p p_buf.
  266. *
  267. * @retval NRF_SUCCESS Encoding success.
  268. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  269. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  270. */
  271. uint32_t ble_gap_evt_conn_param_update_request_enc(ble_evt_t const * const p_event,
  272. uint32_t event_len,
  273. uint8_t * const p_buf,
  274. uint32_t * const p_buf_len);
  275. /**
  276. * @brief Encodes ble_gap_evt_adv_report event.
  277. *
  278. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  279. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  280. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  281. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  282. * \c out: Length of encoded contents in \p p_buf.
  283. *
  284. * @retval NRF_SUCCESS Encoding success.
  285. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  286. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  287. */
  288. uint32_t ble_gap_evt_adv_report_enc(ble_evt_t const * const p_event,
  289. uint32_t event_len,
  290. uint8_t * const p_buf,
  291. uint32_t * const p_buf_len);
  292. /**
  293. * @brief Encodes ble_gap_evt_scan_req_report event.
  294. *
  295. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  296. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  297. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  298. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  299. * \c out: Length of encoded contents in \p p_buf.
  300. *
  301. * @retval NRF_SUCCESS Encoding success.
  302. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  303. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  304. */
  305. uint32_t ble_gap_evt_scan_req_report_enc(ble_evt_t const * const p_event,
  306. uint32_t event_len,
  307. uint8_t * const p_buf,
  308. uint32_t * const p_buf_len);
  309. /**
  310. * @brief Encodes ble_gap_evt_key_pressed event.
  311. *
  312. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  313. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  314. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  315. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  316. * \c out: Length of encoded contents in \p p_buf.
  317. *
  318. * @retval NRF_SUCCESS Encoding success.
  319. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  320. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  321. */
  322. uint32_t ble_gap_evt_key_pressed_enc(ble_evt_t const * const p_event,
  323. uint32_t event_len,
  324. uint8_t * const p_buf,
  325. uint32_t * const p_buf_len);
  326. /**
  327. * @brief Encodes ble_gap_evt_lesc_dhkey_request event.
  328. *
  329. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  330. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  331. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  332. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  333. * \c out: Length of encoded contents in \p p_buf.
  334. *
  335. * @retval NRF_SUCCESS Encoding success.
  336. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  337. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  338. */
  339. uint32_t ble_gap_evt_lesc_dhkey_request_enc(ble_evt_t const * const p_event,
  340. uint32_t event_len,
  341. uint8_t * const p_buf,
  342. uint32_t * const p_buf_len);
  343. #if NRF_SD_BLE_API_VERSION >= 5
  344. /**
  345. * @brief Encodes ble_gap_evt_phy_update event.
  346. *
  347. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  348. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  349. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  350. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  351. * \c out: Length of encoded contents in \p p_buf.
  352. *
  353. * @retval NRF_SUCCESS Encoding success.
  354. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  355. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  356. */
  357. uint32_t ble_gap_evt_phy_update_enc(ble_evt_t const * const p_event,
  358. uint32_t event_len,
  359. uint8_t * const p_buf,
  360. uint32_t * const p_buf_len);
  361. /**
  362. * @brief Encodes ble_gap_evt_phy_update_request event.
  363. *
  364. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  365. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  366. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  367. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  368. * \c out: Length of encoded contents in \p p_buf.
  369. *
  370. * @retval NRF_SUCCESS Encoding success.
  371. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  372. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  373. */
  374. uint32_t ble_gap_evt_phy_update_request_enc(ble_evt_t const * const p_event,
  375. uint32_t event_len,
  376. uint8_t * const p_buf,
  377. uint32_t * const p_buf_len);
  378. #endif
  379. #if NRF_SD_BLE_API_VERSION >= 4
  380. /**
  381. * @brief Encodes ble_gap_evt_data_length_update_request event.
  382. *
  383. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  384. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  385. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  386. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  387. * \c out: Length of encoded contents in \p p_buf.
  388. *
  389. * @retval NRF_SUCCESS Encoding success.
  390. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  391. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  392. */
  393. uint32_t ble_gap_evt_data_length_update_request_enc(ble_evt_t const * const p_event,
  394. uint32_t event_len,
  395. uint8_t * const p_buf,
  396. uint32_t * const p_buf_len);
  397. /**
  398. * @brief Encodes ble_gap_evt_data_length_update event.
  399. *
  400. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  401. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  402. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  403. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  404. * \c out: Length of encoded contents in \p p_buf.
  405. *
  406. * @retval NRF_SUCCESS Encoding success.
  407. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  408. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  409. */
  410. uint32_t ble_gap_evt_data_length_update_enc(ble_evt_t const * const p_event,
  411. uint32_t event_len,
  412. uint8_t * const p_buf,
  413. uint32_t * const p_buf_len);
  414. #endif
  415. #if NRF_SD_BLE_API_VERSION >= 6
  416. /**
  417. * @brief Encodes ble_gap_evt_adv_set_terminated event.
  418. *
  419. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  420. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  421. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  422. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  423. * \c out: Length of encoded contents in \p p_buf.
  424. *
  425. * @retval NRF_SUCCESS Encoding success.
  426. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  427. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  428. */
  429. uint32_t ble_gap_evt_adv_set_terminated_enc(ble_evt_t const * const p_event,
  430. uint32_t event_len,
  431. uint8_t * const p_buf,
  432. uint32_t * const p_buf_len);
  433. #ifndef S112
  434. /**
  435. * @brief Encodes ble_gap_evt_qos_channel_survey_report event.
  436. *
  437. * @param[in] p_event Pointer to the \ref ble_evt_t buffer that shall be encoded.
  438. * @param[in] event_len Size (in bytes) of \p p_event buffer.
  439. * @param[out] p_buf Pointer to the beginning of a buffer for encoded event packet.
  440. * @param[in,out] p_buf_len \c in: Size (in bytes) of \p p_buf buffer.
  441. * \c out: Length of encoded contents in \p p_buf.
  442. *
  443. * @retval NRF_SUCCESS Encoding success.
  444. * @retval NRF_ERROR_NULL Encoding failure. NULL pointer supplied.
  445. * @retval NRF_ERROR_INVALID_LENGTH Encoding failure. Incorrect buffer length.
  446. */
  447. uint32_t ble_gap_evt_qos_channel_survey_report_enc(ble_evt_t const * const p_event,
  448. uint32_t event_len,
  449. uint8_t * const p_buf,
  450. uint32_t * const p_buf_len);
  451. #endif //!S112
  452. #endif //NRF_SD_BLE_API_VERSION >= 6
  453. /** @} */
  454. #ifdef __cplusplus
  455. }
  456. #endif
  457. #endif