projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Get rid of the redundant ATTR_NEVER_INLINE macro which translated to the same as...
[pub/USBasp.git]
/
Demos
/
Device
/
ClassDriver
/
RNDISEthernet
/
Lib
/
TCP.h
diff --git
a/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h
b/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h
index
cb4adf7
..
f9a7541
100644
(file)
--- a/
Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h
+++ b/
Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.h
@@
-1,13
+1,13
@@
/*
LUFA Library
/*
LUFA Library
- Copyright (C) Dean Camera, 201
2
.
+ Copyright (C) Dean Camera, 201
3
.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
- Copyright 201
2
Dean Camera (dean [at] fourwalledcubicle [dot] com)
+ Copyright 201
3
Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purpose is hereby granted
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purpose is hereby granted
@@
-91,7
+91,7
@@
*
* \param[in] Buffer Application buffer to check
*
*
* \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))
*/
#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
*
*
* \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))
*/
#define TCP_APP_HAVE_CAPTURED_BUFFER(Buffer) (!(Buffer->Ready) && Buffer->InUse && (Buffer->Direction == TCP_PACKETDIR_OUT))
@@
-107,7
+107,7
@@
*
* \param[in] Buffer Application buffer to check
*
*
* \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
*/
#define TCP_APP_CAN_CAPTURE_BUFFER(Buffer) Buffer->InUse