/* 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 * * @defgroup aci aci * @{ * @ingroup lib * * @brief Definitions for the ACI (Application Control Interface) * @remarks * * Flow control from application mcu to nRF8001 * * Data flow control: * The flow control is credit based and the credit is initally given using the "device started" event. * A credit of more than 1 is given to the application mcu. * These credits are used only after the "ACI Connected Event" is sent to the application mcu. * * every send_data that is used decrements the credit available by 1. This is to be tracked by the application mcu. * When the credit available reaches 0, the application mcu shall not send any more send_data. * Credit is returned using the "credit event", this returned credit can then be used to send more send_data. * This flow control is not necessary and not available for Broadcast. * The entire credit available with the external mcu expires when a "disconnected" event arrives. * * Command flow control: * When a command is sent over the ACI, the next command shall not be sent until after a response * for the command sent has arrived. * */ #ifndef ACI_H__ #define ACI_H__ /** * @def ACI_VERSION * @brief Current ACI protocol version. 0 means a device that is not yet released. * A numer greater than 0 refers to a specific ACI version documented and released. * The ACI consists of the ACI commands, ACI events and error codes. */ #define ACI_VERSION (0x02) /** * @def BTLE_DEVICE_ADDRESS_SIZE * @brief Size in bytes of a Bluetooth Address */ #define BTLE_DEVICE_ADDRESS_SIZE (6) /** * @def ACI_PACKET_MAX_LEN * @brief Maximum length in bytes of a full ACI packet, including length prefix, opcode and payload */ #define ACI_PACKET_MAX_LEN (32) /** * @def ACI_ECHO_DATA_MAX_LEN * @brief Maximum length in bytes of the echo data portion */ #define ACI_ECHO_DATA_MAX_LEN (ACI_PACKET_MAX_LEN - 3) /** * @def ACI_DEVICE_MAX_PIPES * @brief Maximum number of ACI pipes */ #define ACI_DEVICE_MAX_PIPES (62) /** * @def ACI_PIPE_TX_DATA_MAX_LEN * @brief Maximum length in bytes of a transmission data pipe packet */ #define ACI_PIPE_TX_DATA_MAX_LEN (20) /** * @def ACI_PIPE_RX_DATA_MAX_LEN * @brief Maximum length in bytes of a reception data pipe packet */ #define ACI_PIPE_RX_DATA_MAX_LEN (22) /** * @def ACI_GAP_DEVNAME_MAX_LEN * @brief Maximum length in bytes of the GAP device name */ #define ACI_GAP_DEVNAME_MAX_LEN (20) /** * @def ACI_AD_PACKET_MAX_LEN * @brief Maximum length in bytes of an AD packet */ #define ACI_AD_PACKET_MAX_LEN (31) /** * @def ACI_AD_PACKET_MAX_USER_LEN * @brief Maximum usable length in bytes of an AD packet */ #define ACI_AD_PACKET_MAX_USER_LEN (31 - 3) /** * @def ACI_PIPE_INVALID * @brief Invalid pipe number */ #define ACI_PIPE_INVALID (0xFF) /** * @enum aci_pipe_store_t * @brief Storage type identifiers: local and remote */ typedef enum { ACI_STORE_INVALID = 0x0, ACI_STORE_LOCAL= 0x01, ACI_STORE_REMOTE= 0x02 } aci_pipe_store_t; /** * @enum aci_pipe_type_t * @brief Pipe types */ typedef enum { ACI_TX_BROADCAST = 0x0001, ACI_TX = 0x0002, ACI_TX_ACK = 0x0004, ACI_RX = 0x0008, ACI_RX_ACK = 0x0010, ACI_TX_REQ = 0x0020, ACI_RX_REQ = 0x0040, ACI_SET = 0x0080, ACI_TX_SIGN = 0x0100, ACI_RX_SIGN = 0x0200, ACI_RX_ACK_AUTO = 0x0400 } aci_pipe_type_t; /** * @enum aci_bd_addr_type_t * @brief Bluetooth Address types */ typedef enum { ACI_BD_ADDR_TYPE_INVALID = 0x00, ACI_BD_ADDR_TYPE_PUBLIC = 0x01, ACI_BD_ADDR_TYPE_RANDOM_STATIC = 0x02, ACI_BD_ADDR_TYPE_RANDOM_PRIVATE_RESOLVABLE = 0x03, ACI_BD_ADDR_TYPE_RANDOM_PRIVATE_UNRESOLVABLE = 0x04 } aci_bd_addr_type_t; /** * @enum aci_device_output_power_t * @brief Radio output power levels */ typedef enum { ACI_DEVICE_OUTPUT_POWER_MINUS_18DBM = 0x00, /**< Output power set to -18dBm */ ACI_DEVICE_OUTPUT_POWER_MINUS_12DBM = 0x01, /**< Output power set to -12dBm */ ACI_DEVICE_OUTPUT_POWER_MINUS_6DBM = 0x02, /**< Output power set to -6dBm */ ACI_DEVICE_OUTPUT_POWER_0DBM = 0x03 /**< Output power set to 0dBm - DEFAULT*/ } aci_device_output_power_t; /** * @enum aci_device_operation_mode_t * @brief Device operation modes */ typedef enum { ACI_DEVICE_INVALID =0x00, ACI_DEVICE_TEST =0x01, ACI_DEVICE_SETUP =0x02, ACI_DEVICE_STANDBY =0x03, ACI_DEVICE_SLEEP =0x04 } aci_device_operation_mode_t; /** * @enum aci_disconnect_reason_t * @brief Reason enumeration for ACI_CMD_DISCONNECT */ typedef enum { ACI_REASON_TERMINATE =0x01, /**< Use this to disconnect (does a terminate request), you need to wait for the "disconnected" event */ ACI_REASON_BAD_TIMING =0x02 /*