aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/DFU/BootloaderDFU.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-11-29 05:19:41 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-11-29 05:19:41 +0000
commit414b92e8123b9163015fb99ec286439275b000e8 (patch)
tree4cb44799143cd511fd7e6a7045753811b32ae28c /Bootloaders/DFU/BootloaderDFU.c
parent958d28d05dcf29530cc552ba75b53fc41bd89c7e (diff)
downloadlufa-414b92e8123b9163015fb99ec286439275b000e8.tar.gz
lufa-414b92e8123b9163015fb99ec286439275b000e8.tar.bz2
lufa-414b92e8123b9163015fb99ec286439275b000e8.zip
Add to the existing CDC Class Driver's CreateStream() function documentation to explicitly state that the created streams are bidirectional.
Diffstat (limited to 'Bootloaders/DFU/BootloaderDFU.c')
-rw-r--r--Bootloaders/DFU/BootloaderDFU.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/Bootloaders/DFU/BootloaderDFU.c b/Bootloaders/DFU/BootloaderDFU.c
index 71b37ea68..4184b190c 100644
--- a/Bootloaders/DFU/BootloaderDFU.c
+++ b/Bootloaders/DFU/BootloaderDFU.c
@@ -690,11 +690,7 @@ static void ProcessReadCommand(void)
uint8_t DataIndexToRead = SentCommand.Data[1];
if (IS_ONEBYTE_COMMAND(SentCommand.Data, 0x00)) // Read bootloader info
- {
- ResponseByte = BootloaderInfo[DataIndexToRead];
- }
+ ResponseByte = BootloaderInfo[DataIndexToRead];
else if (IS_ONEBYTE_COMMAND(SentCommand.Data, 0x01)) // Read signature byte
- {
- ResponseByte = SignatureInfo[DataIndexToRead - 0x30];
- }
+ ResponseByte = SignatureInfo[DataIndexToRead - 0x30];
}