X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/a2e6d54336144f7fa3cc1d77f887cc9e20631771..fd96b288824caaa3ee4e5e03887f016de9df80cf:/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