1 /* Copyright (c) 2014, Nordic Semiconductor ASA
2  *
3  * Permission is hereby granted, free of charge, to any person obtaining a copy
4  * of this software and associated documentation files (the "Software"), to deal
5  * in the Software without restriction, including without limitation the rights
6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7  * copies of the Software, and to permit persons to whom the Software is
8  * furnished to do so, subject to the following conditions:
9  *
10  * The above copyright notice and this permission notice shall be included in all
11  * copies or substantial portions of the Software.
12  *
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19  * SOFTWARE.
20  */
21 
22 /**
23  * @file
24  *
25  * @ingroup aci-lib
26  *
27  * @brief Internal prototype for acilib module.
28  */
29 
30 #ifndef _acilib_H_
31 #define _acilib_H_
32 
33 #define MSG_SET_LOCAL_DATA_BASE_LEN              2
34 #define MSG_CONNECT_LEN                          5
35 #define MSG_BOND_LEN                             5
36 #define MSG_DISCONNECT_LEN                       2
37 #define MSG_BASEBAND_RESET_LEN                   1
38 #define MSG_WAKEUP_LEN                           1
39 #define MSG_SET_RADIO_TX_POWER_LEN               2
40 #define MSG_GET_DEVICE_ADDR_LEN                  1
41 #define MSG_SEND_DATA_BASE_LEN                   2
42 #define MSG_DATA_REQUEST_LEN                     2
43 #define MSG_OPEN_REMOTE_PIPE_LEN                 2
44 #define MSG_CLOSE_REMOTE_PIPE_LEN                2
45 #define MSG_DTM_CMD                              3
46 #define MSG_WRITE_DYNAMIC_DATA_BASE_LEN          2
47 #define MSG_SETUP_CMD_BASE_LEN                   1
48 #define MSG_ECHO_MSG_CMD_BASE_LEN                1
49 #define MSG_CHANGE_TIMING_LEN                    9
50 #define MSG_SET_APP_LATENCY_LEN                  4
51 #define MSG_CHANGE_TIMING_LEN_GAP_PPCP           1
52 #define MSG_DIRECT_CONNECT_LEN                   1
53 #define MSG_SET_KEY_REJECT_LEN                   2
54 #define MSG_SET_KEY_PASSKEY_LEN                  8
55 #define MSG_SET_KEY_OOB_LEN                      18
56 #define MSG_ACK_LEN                              2
57 #define MSG_NACK_LEN                             3
58 #define MSG_BROADCAST_LEN                        5
59 #define MSG_OPEN_ADV_PIPES_LEN                   9
60 
61 #endif /* _acilib_H_ */
62