remove ununsed code

This commit is contained in:
sakumisu
2023-07-13 19:37:12 +08:00
parent 4395c7f039
commit c8ecf31c99
4 changed files with 1 additions and 6 deletions

View File

@@ -68,7 +68,7 @@ static int audio_class_interface_request_handler(struct usb_setup_packet *setup,
uint8_t ch; uint8_t ch;
uint8_t mute; uint8_t mute;
uint16_t volume; uint16_t volume;
int volume_db; int volume_db = 0;
uint32_t sampling_freq = 0; uint32_t sampling_freq = 0;
const char *mute_string[2] = { "off", "on" }; const char *mute_string[2] = { "off", "on" };

View File

@@ -16,7 +16,6 @@ static int cdc_acm_class_interface_request_handler(struct usb_setup_packet *setu
setup->bRequest); setup->bRequest);
struct cdc_line_coding line_coding; struct cdc_line_coding line_coding;
struct cdc_line_coding line_coding_last;
bool dtr, rts; bool dtr, rts;
uint8_t intf_num = LO_BYTE(setup->wIndex); uint8_t intf_num = LO_BYTE(setup->wIndex);

View File

@@ -68,8 +68,6 @@ USB_NOCACHE_RAM_SECTION struct usbd_core_priv {
struct usbd_tx_rx_msg rx_msg[USB_EP_OUT_NUM]; struct usbd_tx_rx_msg rx_msg[USB_EP_OUT_NUM];
} g_usbd_core; } g_usbd_core;
usb_slist_t usbd_intf_head = USB_SLIST_OBJECT_INIT(usbd_intf_head);
#if defined(CONFIG_USBDEV_TX_THREAD) #if defined(CONFIG_USBDEV_TX_THREAD)
usb_osal_mq_t usbd_tx_mq; usb_osal_mq_t usbd_tx_mq;
usb_osal_thread_t usbd_tx_thread; usb_osal_thread_t usbd_tx_thread;

View File

@@ -501,8 +501,6 @@ int usb_hc_init(void)
USB_OTG_GLB->GCCFG &= ~USB_OTG_GCCFG_VBUSBSEN; USB_OTG_GLB->GCCFG &= ~USB_OTG_GCCFG_VBUSBSEN;
USB_OTG_GLB->GCCFG &= ~USB_OTG_GCCFG_VBUSASEN; USB_OTG_GLB->GCCFG &= ~USB_OTG_GCCFG_VBUSASEN;
#endif #endif
/*!< FS/LS PHY clock select */
USB_OTG_HOST->HCFG |= USB_OTG_HCFG_FSLSPCS_0;
/* Set default Max speed support */ /* Set default Max speed support */
USB_OTG_HOST->HCFG &= ~(USB_OTG_HCFG_FSLSS); USB_OTG_HOST->HCFG &= ~(USB_OTG_HCFG_FSLSS);