* <b>Single Stream Transfer Example:</b>\r
* \code\r
* uint8_t ErrorCode;\r
- *\r
+ * \r
* if ((ErrorCode = Endpoint_Discard_Stream(512, NULL)) != ENDPOINT_RWSTREAM_NoError)\r
* {\r
* // Stream failed to complete - check ErrorCode here\r
* \code\r
* uint8_t ErrorCode;\r
* uint16_t BytesProcessed;\r
- *\r
+ * \r
* BytesProcessed = 0;\r
* while ((ErrorCode = Endpoint_Discard_Stream(512, &BytesProcessed)) == ENDPOINT_RWSTREAM_IncompleteTransfer)\r
* {\r
* // Stream not yet complete - do other actions here, abort if required\r
* }\r
- *\r
+ * \r
* if (ErrorCode != ENDPOINT_RWSTREAM_NoError)\r
* {\r
* // Stream failed to complete - check ErrorCode here\r
* <b>Single Stream Transfer Example:</b>\r
* \code\r
* uint8_t ErrorCode;\r
- *\r
+ * \r
* if ((ErrorCode = Endpoint_Null_Stream(512, NULL)) != ENDPOINT_RWSTREAM_NoError)\r
* {\r
* // Stream failed to complete - check ErrorCode here\r
* \code\r
* uint8_t ErrorCode;\r
* uint16_t BytesProcessed;\r
- *\r
+ * \r
* BytesProcessed = 0;\r
* while ((ErrorCode = Endpoint_Null_Stream(512, &BytesProcessed)) == ENDPOINT_RWSTREAM_IncompleteTransfer)\r
* {\r
* // Stream not yet complete - do other actions here, abort if required\r
* }\r
- *\r
+ * \r
* if (ErrorCode != ENDPOINT_RWSTREAM_NoError)\r
* {\r
* // Stream failed to complete - check ErrorCode here\r
* \code\r
* uint8_t DataStream[512];\r
* uint8_t ErrorCode;\r
- *\r
+ * \r
* if ((ErrorCode = Endpoint_Write_Stream_LE(DataStream, sizeof(DataStream),\r
* NULL)) != ENDPOINT_RWSTREAM_NoError)\r
* {\r
* uint8_t DataStream[512];\r
* uint8_t ErrorCode;\r
* uint16_t BytesProcessed;\r
- *\r
+ * \r
* BytesProcessed = 0;\r
* while ((ErrorCode = Endpoint_Write_Stream_LE(DataStream, sizeof(DataStream),\r
* &BytesProcessed)) == ENDPOINT_RWSTREAM_IncompleteTransfer)\r
* {\r
* // Stream not yet complete - do other actions here, abort if required\r
* }\r
- *\r
+ * \r
* if (ErrorCode != ENDPOINT_RWSTREAM_NoError)\r
* {\r
* // Stream failed to complete - check ErrorCode here\r
* \code\r
* uint8_t DataStream[512];\r
* uint8_t ErrorCode;\r
- *\r
+ * \r
* if ((ErrorCode = Endpoint_Read_Stream_LE(DataStream, sizeof(DataStream),\r
* NULL)) != ENDPOINT_RWSTREAM_NoError)\r
* {\r
* uint8_t DataStream[512];\r
* uint8_t ErrorCode;\r
* uint16_t BytesProcessed;\r
- *\r
+ * \r
* BytesProcessed = 0;\r
* while ((ErrorCode = Endpoint_Read_Stream_LE(DataStream, sizeof(DataStream),\r
* &BytesProcessed)) == ENDPOINT_RWSTREAM_IncompleteTransfer)\r
* {\r
* // Stream not yet complete - do other actions here, abort if required\r
* }\r
- *\r
+ * \r
* if (ErrorCode != ENDPOINT_RWSTREAM_NoError)\r
* {\r
* // Stream failed to complete - check ErrorCode here\r