diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-18 19:24:55 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-18 19:24:55 +0000 |
commit | 03cdb09071c5c9ed9dd0f851a0980d360a4492d0 (patch) | |
tree | 26aca239e281055455d88b9d44a8a1c52b97beb1 /Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h | |
parent | 88bcc6fde546f12a31f46b5c8b77631b0c648638 (diff) | |
download | lufa-03cdb09071c5c9ed9dd0f851a0980d360a4492d0.tar.gz lufa-03cdb09071c5c9ed9dd0f851a0980d360a4492d0.tar.bz2 lufa-03cdb09071c5c9ed9dd0f851a0980d360a4492d0.zip |
Minor documentation improvements.
Diffstat (limited to 'Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h')
-rw-r--r-- | Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h b/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h index 3dfbb57df..a471c0ef8 100644 --- a/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h +++ b/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.h @@ -91,7 +91,7 @@ * * \param[in] Buffer Application buffer to check * - * \return Boolean true if the buffer contains a packet from the host, false otherwise + * \return Boolean \c true if the buffer contains a packet from the host, \c false otherwise */ #define TCP_APP_HAS_RECEIVED_PACKET(Buffer) (Buffer->Ready && (Buffer->Direction == TCP_PACKETDIR_IN)) @@ -99,7 +99,7 @@ * * \param[in] Buffer Application buffer to check * - * \return Boolean true if the buffer has been captured by the application for device-to-host transmissions, false otherwise + * \return Boolean \c true if the buffer has been captured by the application for device-to-host transmissions, \c false otherwise */ #define TCP_APP_HAVE_CAPTURED_BUFFER(Buffer) (!(Buffer->Ready) && Buffer->InUse && \ (Buffer->Direction == TCP_PACKETDIR_OUT)) @@ -108,7 +108,7 @@ * * \param[in] Buffer Application buffer to check * - * \return Boolean true if the buffer may be captured by the application for device-to-host transmissions, false otherwise + * \return Boolean \c true if the buffer may be captured by the application for device-to-host transmissions, \c false otherwise */ #define TCP_APP_CAN_CAPTURE_BUFFER(Buffer) Buffer->InUse |