common: USB_VcomDeinit() always shuts down the singleton CDC device.
[gps-watch.git] / src / common / virtual_com.h
index 1b512ad7dac1db3bdc87981445f4f5515251db1e..84acdfa4b31d55a0edc24a6e21abda5889218289 100644 (file)
@@ -125,7 +125,7 @@ typedef struct _usb_cdc_acm_info
  *
  * @return pointer to USB device handle.
  */
-usb_device_handle USB_VcomInit(void);
+usb_device_handle USB_VcomInit (uint16_t vid, uint16_t pid);
 
 /*!
  * @brief Application initialization function.
@@ -134,18 +134,6 @@ usb_device_handle USB_VcomInit(void);
  *
  * @return pointer to USB device handle.
  */
-void USB_VcomDeinit(usb_device_handle deviceHandle);
-
-/*!
- * @brief USB send data to host using a blocking method.
- *
- * This function sends data to 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 None.
- */
-void USB_VcomWriteBlocking(usb_device_handle baseAddr, const uint8_t *buf, size_t count);
+void USB_VcomDeinit (void);
 
 #endif /* _USB_CDC_VCOM_H_ */