/*
LUFA Library
- Copyright (C) Dean Camera, 2011.
+ Copyright (C) Dean Camera, 2012.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
- Copyright 2011 Dean Camera (dean [at] fourwalledcubicle [dot] com)
+ Copyright 2012 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purpose is hereby granted
/** Bluetooth signaling command header structure, for all ACL packets containing a signaling command. */
typedef struct
{
- uint8_t Code; /**< Signal code, a BT_SIGNAL_* mask value */
+ uint8_t Code; /**< Signal code, a \c BT_SIGNAL_* mask value */
uint8_t Identifier; /**< Unique signal command identifier to link requests and responses */
uint16_t Length; /**< Length of the signaling command data, in bytes */
} BT_Signal_Header_t;
/** Connection Request signaling command structure, for channel connection requests. */
typedef struct
{
- uint16_t PSM; /**< Type of data the channel will carry, a CHANNEL_PSM_* mask value */
+ uint16_t PSM; /**< Type of data the channel will carry, a \c CHANNEL_PSM_* mask value */
uint16_t SourceChannel; /**< Channel source on the sending device this channel will link to */
} BT_Signal_ConnectionReq_t;
{
uint16_t DestinationChannel; /**< Destination device channel that the connection request was processed on */
uint16_t SourceChannel; /**< Source device channel address that the connection request came from */
- uint16_t Result; /**< Connection result, a BT_CONNECTION_* mask value */
+ uint16_t Result; /**< Connection result, a \c BT_CONNECTION_* mask value */
uint16_t Status; /**< Status of the request if the result was set to the Pending value */
} BT_Signal_ConnectionResp_t;
{
uint16_t SourceChannel; /**< Source channel that the configuration request was directed at */
uint16_t Flags; /**< Configuration flags for the response, including response continuation */
- uint16_t Result; /**< Configuration result, a BT_CONFIGURATION_* mask value */
+ uint16_t Result; /**< Configuration result, a \c BT_CONFIGURATION_* mask value */
} BT_Signal_ConfigurationResp_t;
/** Information Request signaling command structure, for device information requests. */
typedef struct
{
- uint16_t InfoType; /**< Data type that is being requested, a BT_INFOREQ_* mask value */
+ uint16_t InfoType; /**< Data type that is being requested, a \c BT_INFOREQ_* mask value */
} BT_Signal_InformationReq_t;
/** Information Response signaling command structure, for responses to information requests. */
typedef struct
{
- uint16_t InfoType; /**< Data type that was requested, a BT_INFOREQ_* mask value */
- uint16_t Result; /**< Result of the request, a BT_INFORMATION_* mask value */
+ uint16_t InfoType; /**< Data type that was requested, a \c BT_INFOREQ_* mask value */
+ uint16_t Result; /**< Result of the request, a \c BT_INFORMATION_* mask value */
} BT_Signal_InformationResp_t;
/** Configuration Option header structure, placed at the start of each option in a Channel Configuration
*/
typedef struct
{
- uint8_t Type; /**< Option type, a BT_CONFIG_OPTION_* mask value */
+ uint8_t Type; /**< Option type, a \c BT_CONFIG_OPTION_* mask value */
uint8_t Length; /**< Length of the option's value, in bytes */
} BT_Config_Option_Header_t;