From: Tilman Sauerbeck Date: Thu, 4 Jul 2019 04:52:00 +0000 (+0200) Subject: common: Remove prototype for undefined function USB_VcomReadPolling(). X-Git-Url: http://git.code-monkey.de/?p=gps-watch.git;a=commitdiff_plain;h=7ce8e4b114b9633a21ff79c88614aa6dfe27959f common: Remove prototype for undefined function USB_VcomReadPolling(). --- diff --git a/src/common/virtual_com.h b/src/common/virtual_com.h index 37ea305..5c15353 100644 --- a/src/common/virtual_com.h +++ b/src/common/virtual_com.h @@ -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. *