common: Remove prototype for undefined function USB_VcomReadPolling().
authorTilman Sauerbeck <tilman@code-monkey.de>
Thu, 4 Jul 2019 04:52:00 +0000 (06:52 +0200)
committerTilman Sauerbeck <tilman@code-monkey.de>
Sun, 5 Jan 2020 19:38:11 +0000 (20:38 +0100)
src/common/virtual_com.h

index 37ea3051f8b82af85e79aaa7de3be94a8a52e56c..5c15353831ef89cabc34286b186492812499b239 100644 (file)
@@ -148,18 +148,6 @@ void USB_VcomDeinit(usb_device_handle deviceHandle);
  */
 status_t USB_VcomReadBlocking(usb_device_handle baseAddr, uint8_t *buf, size_t count);
 
-/*!
- * @brief USB recive 'count' number of data from host using a blocking method.
- *
- * This function recives data from host by usb cdc protocol
- * @param baseAddr pointer to USB device handle.
- * @param buf pointer to the data.
- * @param count size of the transfer.
- *
- * @return A USB error code or kStatus_USB_Success.
- */
-status_t USB_VcomReadPolling(usb_device_handle baseAddr, uint8_t *buf, size_t count);
-
 /*!
  * @brief USB send data to host using a blocking method.
  *