From fd96b288824caaa3ee4e5e03887f016de9df80cf Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Thu, 1 Apr 2010 04:30:21 +0000 Subject: 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. --- .../Incomplete/BluetoothHost/ConfigDescriptor.h | 25 +++++++++++++--------- 1 file changed, 15 insertions(+), 10 deletions(-) (limited to 'Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.h') 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 #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 -- cgit v1.2.3