User | Revision | Line number | New contents of line |
jinu |
0:6ba9b94b8997
|
1
|
/* Copyright (c) Nordic Semiconductor ASA
|
jinu |
0:6ba9b94b8997
|
2
|
* All rights reserved.
|
jinu |
0:6ba9b94b8997
|
3
|
*
|
jinu |
0:6ba9b94b8997
|
4
|
* Redistribution and use in source and binary forms, with or without modification,
|
jinu |
0:6ba9b94b8997
|
5
|
* are permitted provided that the following conditions are met:
|
jinu |
0:6ba9b94b8997
|
6
|
*
|
jinu |
0:6ba9b94b8997
|
7
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
jinu |
0:6ba9b94b8997
|
8
|
* list of conditions and the following disclaimer.
|
jinu |
0:6ba9b94b8997
|
9
|
*
|
jinu |
0:6ba9b94b8997
|
10
|
* 2. Redistributions in binary form must reproduce the above copyright notice, this
|
jinu |
0:6ba9b94b8997
|
11
|
* list of conditions and the following disclaimer in the documentation and/or
|
jinu |
0:6ba9b94b8997
|
12
|
* other materials provided with the distribution.
|
jinu |
0:6ba9b94b8997
|
13
|
*
|
jinu |
0:6ba9b94b8997
|
14
|
* 3. Neither the name of Nordic Semiconductor ASA nor the names of other
|
jinu |
0:6ba9b94b8997
|
15
|
* contributors to this software may be used to endorse or promote products
|
jinu |
0:6ba9b94b8997
|
16
|
* derived from this software without specific prior written permission.
|
jinu |
0:6ba9b94b8997
|
17
|
*
|
jinu |
0:6ba9b94b8997
|
18
|
* 4. This software must only be used in a processor manufactured by Nordic
|
jinu |
0:6ba9b94b8997
|
19
|
* Semiconductor ASA, or in a processor manufactured by a third party that
|
jinu |
0:6ba9b94b8997
|
20
|
* is used in combination with a processor manufactured by Nordic Semiconductor.
|
jinu |
0:6ba9b94b8997
|
21
|
*
|
jinu |
0:6ba9b94b8997
|
22
|
*
|
jinu |
0:6ba9b94b8997
|
23
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
jinu |
0:6ba9b94b8997
|
24
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
jinu |
0:6ba9b94b8997
|
25
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
jinu |
0:6ba9b94b8997
|
26
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
jinu |
0:6ba9b94b8997
|
27
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
jinu |
0:6ba9b94b8997
|
28
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
jinu |
0:6ba9b94b8997
|
29
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
jinu |
0:6ba9b94b8997
|
30
|
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
jinu |
0:6ba9b94b8997
|
31
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
jinu |
0:6ba9b94b8997
|
32
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
jinu |
0:6ba9b94b8997
|
33
|
*/
|
jinu |
0:6ba9b94b8997
|
34
|
|
jinu |
0:6ba9b94b8997
|
35
|
#include "ble_gap_app.h"
|
jinu |
0:6ba9b94b8997
|
36
|
#include <stddef.h>
|
jinu |
0:6ba9b94b8997
|
37
|
#include "nrf_error.h"
|
jinu |
0:6ba9b94b8997
|
38
|
#include "ble_serialization.h"
|
jinu |
0:6ba9b94b8997
|
39
|
#include "app_util.h"
|
jinu |
0:6ba9b94b8997
|
40
|
|
jinu |
0:6ba9b94b8997
|
41
|
|
jinu |
0:6ba9b94b8997
|
42
|
uint32_t ble_gap_ppcp_set_req_enc(ble_gap_conn_params_t const * const p_conn_params,
|
jinu |
0:6ba9b94b8997
|
43
|
uint8_t * const p_buf,
|
jinu |
0:6ba9b94b8997
|
44
|
uint32_t * const p_buf_len)
|
jinu |
0:6ba9b94b8997
|
45
|
{
|
jinu |
0:6ba9b94b8997
|
46
|
uint32_t index = 0;
|
jinu |
0:6ba9b94b8997
|
47
|
|
jinu |
0:6ba9b94b8997
|
48
|
SER_ASSERT_NOT_NULL(p_buf);
|
jinu |
0:6ba9b94b8997
|
49
|
SER_ASSERT_NOT_NULL(p_buf_len);
|
jinu |
0:6ba9b94b8997
|
50
|
|
jinu |
0:6ba9b94b8997
|
51
|
SER_ASSERT_LENGTH_LEQ(1 + 1, *p_buf_len);
|
jinu |
0:6ba9b94b8997
|
52
|
|
jinu |
0:6ba9b94b8997
|
53
|
p_buf[index++] = SD_BLE_GAP_PPCP_SET;
|
jinu |
0:6ba9b94b8997
|
54
|
p_buf[index++] = (p_conn_params != NULL) ? RPC_BLE_FIELD_PRESENT : RPC_BLE_FIELD_NOT_PRESENT;
|
jinu |
0:6ba9b94b8997
|
55
|
|
jinu |
0:6ba9b94b8997
|
56
|
if (p_conn_params != NULL)
|
jinu |
0:6ba9b94b8997
|
57
|
{
|
jinu |
0:6ba9b94b8997
|
58
|
SER_ASSERT_LENGTH_LEQ(index + 8, *p_buf_len);
|
jinu |
0:6ba9b94b8997
|
59
|
index += uint16_encode(p_conn_params->min_conn_interval, &p_buf[index]);
|
jinu |
0:6ba9b94b8997
|
60
|
index += uint16_encode(p_conn_params->max_conn_interval, &p_buf[index]);
|
jinu |
0:6ba9b94b8997
|
61
|
index += uint16_encode(p_conn_params->slave_latency, &p_buf[index]);
|
jinu |
0:6ba9b94b8997
|
62
|
index += uint16_encode(p_conn_params->conn_sup_timeout, &p_buf[index]);
|
jinu |
0:6ba9b94b8997
|
63
|
}
|
jinu |
0:6ba9b94b8997
|
64
|
|
jinu |
0:6ba9b94b8997
|
65
|
*p_buf_len = index;
|
jinu |
0:6ba9b94b8997
|
66
|
|
jinu |
0:6ba9b94b8997
|
67
|
return NRF_SUCCESS;
|
jinu |
0:6ba9b94b8997
|
68
|
}
|
jinu |
0:6ba9b94b8997
|
69
|
|
jinu |
0:6ba9b94b8997
|
70
|
|
jinu |
0:6ba9b94b8997
|
71
|
uint32_t ble_gap_ppcp_set_rsp_dec(uint8_t const * const p_buf,
|
jinu |
0:6ba9b94b8997
|
72
|
uint32_t packet_len,
|
jinu |
0:6ba9b94b8997
|
73
|
uint32_t * const p_result_code)
|
jinu |
0:6ba9b94b8997
|
74
|
{
|
jinu |
0:6ba9b94b8997
|
75
|
return ser_ble_cmd_rsp_dec(p_buf, packet_len, SD_BLE_GAP_PPCP_SET, p_result_code);
|
jinu |
0:6ba9b94b8997
|
76
|
}
|
jinu |
0:6ba9b94b8997
|
77
|
|