mirror of https://github.com/rusefi/openblt.git
- 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:
parent
b254987f04
commit
abe5a26e27
|
@ -349,7 +349,7 @@ void UsbTransmitPipeBulkIN(void)
|
||||||
** DESCRIPTION: Stores data that was received on the Bulk OUT pipe in the fifo.
|
** 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 */
|
/* USB_Rx_Buffer is static for run-time optimalization */
|
||||||
static uint8_t USB_Rx_Buffer[BULK_DATA_SIZE];
|
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 */
|
/* verify that the fifo wasn't full */
|
||||||
ASSERT_RT(result == BLT_TRUE);
|
ASSERT_RT(result == BLT_TRUE);
|
||||||
}
|
}
|
||||||
/* Enable the reception of data on EP3 */
|
/* Enable the reception of data on EP1 */
|
||||||
SetEPRxValid(ENDP1);
|
SetEPRxValid(ENDP1);
|
||||||
} /*** end of UsbReceivePipeBulkOUT ***/
|
} /*** end of UsbReceivePipeBulkOUT ***/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue