diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-06-15 03:34:55 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-06-15 03:34:55 +0000 |
commit | a14ece5f5727e5c8c6b32ed144808ee9ec66ac78 (patch) | |
tree | 7d3409d0e2b8e0f0958085e2d7c38003ac2ea525 /Demos/Device/ClassDriver/RNDISEthernet | |
parent | 27fb44268fe72a911441b459098551d12f00ef90 (diff) | |
download | lufa-a14ece5f5727e5c8c6b32ed144808ee9ec66ac78.tar.gz lufa-a14ece5f5727e5c8c6b32ed144808ee9ec66ac78.tar.bz2 lufa-a14ece5f5727e5c8c6b32ed144808ee9ec66ac78.zip |
Change over Doxygen \note documentation to \pre where applicable.
Diffstat (limited to 'Demos/Device/ClassDriver/RNDISEthernet')
-rw-r--r-- | Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h b/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h index 059f76dc5..b5152b312 100644 --- a/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h +++ b/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h @@ -102,7 +102,8 @@ * \return Boolean true if the buffer has been captured by the application for device-to-host transmissions, false otherwise */ #define TCP_APP_HAVE_CAPTURED_BUFFER(Buffer) (!(Buffer->Ready) && Buffer->InUse && \ - (Buffer->Direction == TCP_PACKETDIR_OUT)) + + (Buffer->Direction == TCP_PACKETDIR_OUT)) /** Application macro: Indicates if the application can lock the buffer for multiple continued device-to-host transmissions. * @@ -115,7 +116,7 @@ /** Application macro: Captures the application buffer, locking it for device-to-host transmissions only. This should be * performed when the application needs to transmit several packets worth of data in succession with no interruptions from the host. * - * \note The application must check that the buffer can be locked first using TCP_APP_CAN_CAPTURE_BUFFER(). + * \pre The application must check that the buffer can be locked first using TCP_APP_CAN_CAPTURE_BUFFER(). * * \param[in] Buffer Application buffer to lock */ |