diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-26 07:28:40 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-26 07:28:40 +0000 |
commit | cd39c38d5f39d89da989859afd72576b4c1532aa (patch) | |
tree | dbc615854fa4b622c20d5aad27d09d52adfbc137 /Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h | |
parent | 6e2920bc84238077446bdb5bdba25a8ef250d05a (diff) | |
download | lufa-cd39c38d5f39d89da989859afd72576b4c1532aa.tar.gz lufa-cd39c38d5f39d89da989859afd72576b4c1532aa.tar.bz2 lufa-cd39c38d5f39d89da989859afd72576b4c1532aa.zip |
Rename reserved members of all structs so that they are uniformly named across all demos/projects/bootloaders.
Added start of the Incomplete TMC demo's command parser code.
Diffstat (limited to 'Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h')
-rw-r--r-- | Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h b/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h index 6656ac2d9..838e0134b 100644 --- a/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h +++ b/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h @@ -219,7 +219,7 @@ uint32_t SequenceNumber; /**< Data sequence number of the packet */ uint32_t AcknowledgmentNumber; /**< Data acknowledgment number of the packet */ - unsigned char Reserved : 4; /**< Reserved, must be all 0 */ + unsigned char Reserved : 4; /**< Reserved, must be all 0 */ unsigned char DataOffset : 4; /**< Offset of the data from the start of the header, in 4 byte chunks */ uint8_t Flags; /**< TCP packet flags */ uint16_t WindowSize; /**< Current data window size (bytes remaining in reception buffer) */ |