- Removed unused parameter from function UsbReceivePipeBulkOUT()

git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@20 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
Frank Voorburg 2012-01-07 20:56:38 +00:00
parent b254987f04
commit abe5a26e27
1 changed files with 2 additions and 2 deletions

View File

@ -349,7 +349,7 @@ void UsbTransmitPipeBulkIN(void)
** DESCRIPTION: Stores data that was received on the Bulk OUT pipe in the fifo.
**
****************************************************************************************/
void UsbReceivePipeBulkOUT(blt_int8u data)
void UsbReceivePipeBulkOUT(void)
{
/* USB_Rx_Buffer is static for run-time optimalization */
static uint8_t USB_Rx_Buffer[BULK_DATA_SIZE];
@ -370,7 +370,7 @@ void UsbReceivePipeBulkOUT(blt_int8u data)
/* verify that the fifo wasn't full */
ASSERT_RT(result == BLT_TRUE);
}
/* Enable the reception of data on EP3 */
/* Enable the reception of data on EP1 */
SetEPRxValid(ENDP1);
} /*** end of UsbReceivePipeBulkOUT ***/