diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-06-05 13:55:56 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-06-05 13:55:56 +0000 |
| commit | 0267212f9503dbbfcb7e7ce37e57b60a41d6281f (patch) | |
| tree | b06af7dc2e6e2cf9f5bf20cb848cff5ee3f527c8 /Demos/Host/Incomplete/BluetoothHost | |
| parent | 00a54a0cea06ba0b8c367c549e015024e9ae14f1 (diff) | |
Massive corrections to the project documentation and code comments, thanks to Russian translation services provided by Andrey from Microsin.ru.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1782 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Host/Incomplete/BluetoothHost')
3 files changed, 4 insertions, 4 deletions
diff --git a/Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.c b/Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.c index 3a131875..10a24d58 100644 --- a/Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.c +++ b/Demos/Host/Incomplete/BluetoothHost/ConfigDescriptor.c @@ -78,7 +78,7 @@ uint8_t ProcessConfigurationDescriptor(void) while (!(DataINEndpoint) || !(DataOUTEndpoint)) { - /* Get the next Still Image interface's data endpoint descriptor */ + /* Get the next Bluetooth interface's data endpoint descriptor */ if (USB_GetNextDescriptorComp(&CurrConfigBytesRem, &CurrConfigLocation, DComp_NextInterfaceBluetoothDataEndpoint) != DESCRIPTOR_SEARCH_COMP_Found) { diff --git a/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.h b/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.h index c32b52e2..953a5a14 100644 --- a/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.h +++ b/Demos/Host/Incomplete/BluetoothHost/Lib/BluetoothACLPackets.h @@ -146,7 +146,7 @@ /** Configuration Request signaling command structure, for channel configuration requests. */ typedef struct { - uint16_t DestinationChannel; /**< Destination channel address which is to be disconnected */ + uint16_t DestinationChannel; /**< Destination channel address which is to be configured */ uint16_t Flags; /**< Configuration flags for the request, including command continuation */ } BT_Signal_ConfigurationReq_t; diff --git a/Demos/Host/Incomplete/BluetoothHost/Lib/SDPServices.h b/Demos/Host/Incomplete/BluetoothHost/Lib/SDPServices.h index 35d536a1..d580737a 100644 --- a/Demos/Host/Incomplete/BluetoothHost/Lib/SDPServices.h +++ b/Demos/Host/Incomplete/BluetoothHost/Lib/SDPServices.h @@ -70,7 +70,7 @@ uint16_t B; /**< Bits 32-47 of the UUID. */ uint16_t C; /**< Bits 48-63 of the UUID. */ uint16_t D; /**< Bits 64-79 of the UUID. */ - uint8_t E[6]; /**< Bits 80-128 of the UUID. */ + uint8_t E[6]; /**< Bits 80-127 of the UUID. */ } UUID_t; /** Structure for the association of attribute ID values to an attribute value in FLASH. A table of these @@ -152,7 +152,7 @@ struct { ItemUUID_t UUID; /**< UUID to store in the protocol list Data Element sequence */ - Item16Bit_t Channel; /**< 8-Bit Parameter associated with the service */ + Item16Bit_t Channel; /**< 16-Bit Parameter associated with the service */ } Protocol; } ItemProtocol_16BitParam_t; |
