mirror of
https://github.com/KevinMidboe/Arduino.git
synced 2025-10-29 09:30:12 +00:00
54 lines
2.0 KiB
C
Executable File
54 lines
2.0 KiB
C
Executable File
/* Copyright (c) 2010 Nordic Semiconductor. All Rights Reserved.
|
|
*
|
|
* The information contained herein is property of Nordic Semiconductor ASA.
|
|
* Terms and conditions of usage are described in detail in NORDIC
|
|
* SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
|
|
*
|
|
* Licensees are granted free, non-transferable use of the information. NO
|
|
* WARRANTY of ANY KIND is provided. This heading must NOT be removed from
|
|
* the file.
|
|
*
|
|
* $LastChangedRevision$
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* @ingroup group_acilib
|
|
*
|
|
* @brief Internal prototype for acilib module.
|
|
*/
|
|
|
|
#ifndef _acilib_H_
|
|
#define _acilib_H_
|
|
|
|
#define MSG_SET_LOCAL_DATA_BASE_LEN 2
|
|
#define MSG_CONNECT_LEN 5
|
|
#define MSG_BOND_LEN 5
|
|
#define MSG_DISCONNECT_LEN 2
|
|
#define MSG_BASEBAND_RESET_LEN 1
|
|
#define MSG_WAKEUP_LEN 1
|
|
#define MSG_SET_RADIO_TX_POWER_LEN 2
|
|
#define MSG_GET_DEVICE_ADDR_LEN 1
|
|
#define MSG_SEND_DATA_BASE_LEN 2
|
|
#define MSG_DATA_REQUEST_LEN 2
|
|
#define MSG_OPEN_REMOTE_PIPE_LEN 2
|
|
#define MSG_CLOSE_REMOTE_PIPE_LEN 2
|
|
#define MSG_DTM_CMD 3
|
|
#define MSG_WRITE_DYNAMIC_DATA_BASE_LEN 2
|
|
#define MSG_SETUP_CMD_BASE_LEN 1
|
|
#define MSG_ECHO_MSG_CMD_BASE_LEN 1
|
|
#define MSG_CHANGE_TIMING_LEN 9
|
|
#define MSG_SET_APP_LATENCY_LEN 4
|
|
#define MSG_CHANGE_TIMING_LEN_GAP_PPCP 1
|
|
#define MSG_DIRECT_CONNECT_LEN 1
|
|
#define MSG_SET_KEY_REJECT_LEN 2
|
|
#define MSG_SET_KEY_PASSKEY_LEN 8
|
|
#define MSG_SET_KEY_OOB_LEN 18
|
|
#define MSG_ACK_LEN 2
|
|
#define MSG_NACK_LEN 3
|
|
#define MSG_BROADCAST_LEN 5
|
|
#define MSG_OPEN_ADV_PIPES_LEN 9
|
|
|
|
#endif /* _acilib_H_ */
|