aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-04-01 04:30:21 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-04-01 04:30:21 +0000
commitfd96b288824caaa3ee4e5e03887f016de9df80cf (patch)
tree05e97d04d4a40f80218e304226e5613ed3106369 /Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.h
parenta2e6d54336144f7fa3cc1d77f887cc9e20631771 (diff)
downloadlufa-fd96b288824caaa3ee4e5e03887f016de9df80cf.tar.gz
lufa-fd96b288824caaa3ee4e5e03887f016de9df80cf.tar.bz2
lufa-fd96b288824caaa3ee4e5e03887f016de9df80cf.zip
More improvements to the incomplete BluetoothHost demo - add Disconnection Event processing.
Remove unused macro in the host mode demos for the maximum Configuration Descriptor size.
Diffstat (limited to 'Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.h')
-rw-r--r--Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.h25
1 files changed, 15 insertions, 10 deletions
diff --git a/Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.h b/Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.h
index c72f010ae..a54727d48 100644
--- a/Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.h
+++ b/Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.h
@@ -28,6 +28,11 @@
this software.
*/
+/** \file
+ *
+ * Header file for ConfigDescriptor.c.
+ */
+
#ifndef _CONFIGDESCRIPTOR_H_
#define _CONFIGDESCRIPTOR_H_
@@ -35,24 +40,24 @@
#include <LUFA/Drivers/USB/USB.h>
#include "BluetoothHost.h"
-
- /* Macros: */
- #define MAX_CONFIG_DESCRIPTOR_SIZE 512
/* Enums: */
+ /** Enum for the possible return codes of the ProcessConfigurationDescriptor() function. */
enum BluetoothHost_GetConfigDescriptorDataCodes_t
{
- SuccessfulConfigRead = 0,
- ControlErrorDuringConfigRead = 1,
- InvalidConfigDataReturned = 2,
- DescriptorTooLarge = 3,
- NoInterfaceFound = 4,
- NoEndpointFound = 5,
+ SuccessfulConfigRead = 0, /**< Configuration Descriptor was processed successfully */
+ DevControlError = 1, /**< A control request to the device failed to complete successfully */
+ DescriptorTooLarge = 2, /**< The device's Configuration Descriptor is too large to process */
+ InvalidConfigDataReturned = 3, /**< The device returned an invalid Configuration Descriptor */
+ NoBTInterfaceFound = 4, /**< A compatible Blutooth interface was not found in the device's Configuration Descriptor */
+ NoEndpointFound = 5, /**< A compatible set of Bluetooth endpoints were not found in the
+ * device's Bluetooth interface
+ */
};
/* Function Prototypes: */
uint8_t ProcessConfigurationDescriptor(void);
- uint8_t NextInterfaceBluetoothDataEndpoint(void* CurrentDescriptor);
+ uint8_t DComp_NextInterfaceBluetoothDataEndpoint(void* CurrentDescriptor);
#endif