diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-27 11:26:47 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-27 11:26:47 +0000 |
commit | be2a7d45989f5f57b326589350a6ce5bbc835b5c (patch) | |
tree | 51785a3fbce297964c4268080e09b237098d2a79 /LUFA | |
parent | cd39c38d5f39d89da989859afd72576b4c1532aa (diff) | |
download | lufa-be2a7d45989f5f57b326589350a6ce5bbc835b5c.tar.gz lufa-be2a7d45989f5f57b326589350a6ce5bbc835b5c.tar.bz2 lufa-be2a7d45989f5f57b326589350a6ce5bbc835b5c.zip |
Move over message ID specific header data to unions inside the standard TMC header structure, so that all header data is read in one chunk in the incomplete TMC demo.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/Drivers/USB/LowLevel/Endpoint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/Endpoint.h b/LUFA/Drivers/USB/LowLevel/Endpoint.h index dd74d5263..dd49b8092 100644 --- a/LUFA/Drivers/USB/LowLevel/Endpoint.h +++ b/LUFA/Drivers/USB/LowLevel/Endpoint.h @@ -131,8 +131,8 @@ #define ENDPOINT_CONTROLEP 0 #if (!defined(FIXED_CONTROL_ENDPOINT_SIZE) || defined(__DOXYGEN__)) - /** Default size of the default control endpoint's bank, until altered by the Endpoint0Size value - * in the device descriptor. Not available if the FIXED_CONTROL_ENDPOINT_SIZE token is defined. + /** Default size of the default control endpoint's bank, until altered by the control endpoint bank size + * value in the device descriptor. Not available if the FIXED_CONTROL_ENDPOINT_SIZE token is defined. */ #define ENDPOINT_CONTROLEP_DEFAULT_SIZE 8 #endif |