├── GD32C10x ├── CMSIS │ ├── GD │ │ └── GD32C10x │ │ │ ├── Include │ │ │ ├── gd32c10x.h │ │ │ └── system_gd32c10x.h │ │ │ └── Source │ │ │ ├── ARM │ │ │ └── startup_gd32c10x.s │ │ │ ├── IAR │ │ │ └── startup_gd32c10x.s │ │ │ └── system_gd32c10x.c │ ├── core_cm4.h │ ├── core_cm4_simd.h │ ├── core_cmFunc.h │ └── core_cmInstr.h ├── GD32C10x_standard_peripheral │ ├── Include │ │ ├── gd32c10x_adc.h │ │ ├── gd32c10x_bkp.h │ │ ├── gd32c10x_can.h │ │ ├── gd32c10x_crc.h │ │ ├── gd32c10x_ctc.h │ │ ├── gd32c10x_dac.h │ │ ├── gd32c10x_dbg.h │ │ ├── gd32c10x_dma.h │ │ ├── gd32c10x_exmc.h │ │ ├── gd32c10x_exti.h │ │ ├── gd32c10x_fmc.c │ │ ├── gd32c10x_fmc.h │ │ ├── gd32c10x_fwdgt.h │ │ ├── gd32c10x_gpio.h │ │ ├── gd32c10x_i2c.h │ │ ├── gd32c10x_misc.h │ │ ├── gd32c10x_pmu.h │ │ ├── gd32c10x_rcu.h │ │ ├── gd32c10x_rtc.h │ │ ├── gd32c10x_spi.h │ │ ├── gd32c10x_timer.h │ │ ├── gd32c10x_usart.h │ │ └── gd32c10x_wwdgt.h │ └── Source │ │ ├── gd32c10x_adc.c │ │ ├── gd32c10x_bkp.c │ │ ├── gd32c10x_can.c │ │ ├── gd32c10x_crc.c │ │ ├── gd32c10x_ctc.c │ │ ├── gd32c10x_dac.c │ │ ├── gd32c10x_dbg.c │ │ ├── gd32c10x_dma.c │ │ ├── gd32c10x_exmc.c │ │ ├── gd32c10x_exti.c │ │ ├── gd32c10x_fmc.c │ │ ├── gd32c10x_fwdgt.c │ │ ├── gd32c10x_gpio.c │ │ ├── gd32c10x_i2c.c │ │ ├── gd32c10x_misc.c │ │ ├── gd32c10x_pmu.c │ │ ├── gd32c10x_rcu.c │ │ ├── gd32c10x_rtc.c │ │ ├── gd32c10x_spi.c │ │ ├── gd32c10x_timer.c │ │ ├── gd32c10x_usart.c │ │ └── gd32c10x_wwdgt.c └── GD32C10x_usbfs_library │ ├── device │ ├── class │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ ├── dfu │ │ │ ├── Include │ │ │ │ ├── dfu_core.h │ │ │ │ └── dfu_mal.h │ │ │ └── Source │ │ │ │ ├── dfu_core.c │ │ │ │ └── dfu_mal.c │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ └── standard_hid_core.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ └── standard_hid_core.c │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ └── usbd_msc_scsi.c │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ └── core │ │ ├── Include │ │ ├── usbd_core.h │ │ ├── usbd_enum.h │ │ └── usbd_transc.h │ │ └── Source │ │ ├── usbd_core.c │ │ ├── usbd_enum.c │ │ └── usbd_transc.c │ ├── driver │ ├── Include │ │ ├── drv_usb_core.h │ │ ├── drv_usb_dev.h │ │ ├── drv_usb_host.h │ │ ├── drv_usb_hw.h │ │ ├── drv_usb_regs.h │ │ ├── drv_usbd_int.h │ │ └── drv_usbh_int.h │ └── Source │ │ ├── drv_usb_core.c │ │ ├── drv_usb_dev.c │ │ ├── drv_usb_host.c │ │ ├── drv_usbd_int.c │ │ └── drv_usbh_int.c │ ├── host │ ├── class │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── usbh_hid_core.h │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ └── usbh_hid_usage.h │ │ │ └── Source │ │ │ │ ├── usbh_hid_core.c │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ └── usbh_hid_parser.c │ │ └── msc │ │ │ ├── Include │ │ │ ├── usbh_msc_bbb.h │ │ │ ├── usbh_msc_core.h │ │ │ └── usbh_msc_scsi.h │ │ │ └── Source │ │ │ ├── usbh_msc_bbb.c │ │ │ ├── usbh_msc_core.c │ │ │ ├── usbh_msc_fatfs.c │ │ │ └── usbh_msc_scsi.c │ └── core │ │ ├── Include │ │ ├── usbh_core.h │ │ ├── usbh_enum.h │ │ ├── usbh_pipe.h │ │ └── usbh_transc.h │ │ └── Source │ │ ├── usbh_core.c │ │ ├── usbh_enum.c │ │ ├── usbh_pipe.c │ │ └── usbh_transc.c │ └── ustd │ ├── class │ ├── cdc │ │ └── usb_cdc.h │ ├── hid │ │ └── usb_hid.h │ └── msc │ │ ├── msc_bbb.h │ │ ├── msc_scsi.h │ │ └── usb_msc.h │ └── common │ └── usb_ch9_std.h ├── GD32E10x ├── CMSIS │ ├── GD │ │ └── GD32E10x │ │ │ ├── Include │ │ │ ├── gd32e10x.h │ │ │ └── system_gd32e10x.h │ │ │ └── Source │ │ │ ├── ARM │ │ │ └── startup_gd32e10x.s │ │ │ ├── IAR │ │ │ └── startup_gd32e10x.s │ │ │ └── system_gd32e10x.c │ ├── core_cm4.h │ ├── core_cm4_simd.h │ ├── core_cmFunc.h │ └── core_cmInstr.h ├── GD32E10x_standard_peripheral │ ├── Include │ │ ├── gd32e10x_adc.h │ │ ├── gd32e10x_bkp.h │ │ ├── gd32e10x_crc.h │ │ ├── gd32e10x_ctc.h │ │ ├── gd32e10x_dac.h │ │ ├── gd32e10x_dbg.h │ │ ├── gd32e10x_dma.h │ │ ├── gd32e10x_exmc.h │ │ ├── gd32e10x_exti.h │ │ ├── gd32e10x_fmc.c │ │ ├── gd32e10x_fmc.h │ │ ├── gd32e10x_fwdgt.h │ │ ├── gd32e10x_gpio.h │ │ ├── gd32e10x_i2c.h │ │ ├── gd32e10x_misc.h │ │ ├── gd32e10x_pmu.h │ │ ├── gd32e10x_rcu.h │ │ ├── gd32e10x_rtc.h │ │ ├── gd32e10x_spi.h │ │ ├── gd32e10x_timer.h │ │ ├── gd32e10x_usart.h │ │ └── gd32e10x_wwdgt.h │ └── Source │ │ ├── gd32e10x_adc.c │ │ ├── gd32e10x_bkp.c │ │ ├── gd32e10x_crc.c │ │ ├── gd32e10x_ctc.c │ │ ├── gd32e10x_dac.c │ │ ├── gd32e10x_dbg.c │ │ ├── gd32e10x_dma.c │ │ ├── gd32e10x_exmc.c │ │ ├── gd32e10x_exti.c │ │ ├── gd32e10x_fmc.c │ │ ├── gd32e10x_fwdgt.c │ │ ├── gd32e10x_gpio.c │ │ ├── gd32e10x_i2c.c │ │ ├── gd32e10x_misc.c │ │ ├── gd32e10x_pmu.c │ │ ├── gd32e10x_rcu.c │ │ ├── gd32e10x_rtc.c │ │ ├── gd32e10x_spi.c │ │ ├── gd32e10x_timer.c │ │ ├── gd32e10x_usart.c │ │ └── gd32e10x_wwdgt.c └── GD32E10x_usbfs_library │ ├── device │ ├── class │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ ├── dfu │ │ │ ├── Include │ │ │ │ ├── dfu_core.h │ │ │ │ └── dfu_mal.h │ │ │ └── Source │ │ │ │ ├── dfu_core.c │ │ │ │ └── dfu_mal.c │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ └── standard_hid_core.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ └── standard_hid_core.c │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ └── usbd_msc_scsi.c │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ └── core │ │ ├── Include │ │ ├── usbd_core.h │ │ ├── usbd_enum.h │ │ └── usbd_transc.h │ │ └── Source │ │ ├── usbd_core.c │ │ ├── usbd_enum.c │ │ └── usbd_transc.c │ ├── driver │ ├── Include │ │ ├── drv_usb_core.h │ │ ├── drv_usb_dev.h │ │ ├── drv_usb_host.h │ │ ├── drv_usb_hw.h │ │ ├── drv_usb_regs.h │ │ ├── drv_usbd_int.h │ │ └── drv_usbh_int.h │ └── Source │ │ ├── drv_usb_core.c │ │ ├── drv_usb_dev.c │ │ ├── drv_usb_host.c │ │ ├── drv_usbd_int.c │ │ └── drv_usbh_int.c │ ├── host │ ├── class │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── usbh_hid_core.h │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ └── usbh_hid_usage.h │ │ │ └── Source │ │ │ │ ├── usbh_hid_core.c │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ └── usbh_hid_parser.c │ │ └── msc │ │ │ ├── Include │ │ │ ├── usbh_msc_bbb.h │ │ │ ├── usbh_msc_core.h │ │ │ └── usbh_msc_scsi.h │ │ │ └── Source │ │ │ ├── usbh_msc_bbb.c │ │ │ ├── usbh_msc_core.c │ │ │ ├── usbh_msc_fatfs.c │ │ │ └── usbh_msc_scsi.c │ └── core │ │ ├── Include │ │ ├── usbh_core.h │ │ ├── usbh_enum.h │ │ ├── usbh_pipe.h │ │ └── usbh_transc.h │ │ └── Source │ │ ├── usbh_core.c │ │ ├── usbh_enum.c │ │ ├── usbh_pipe.c │ │ └── usbh_transc.c │ └── ustd │ ├── class │ ├── cdc │ │ └── usb_cdc.h │ ├── hid │ │ └── usb_hid.h │ └── msc │ │ ├── msc_bbb.h │ │ ├── msc_scsi.h │ │ └── usb_msc.h │ └── common │ └── usb_ch9_std.h ├── GD32E23x ├── CMSIS │ └── GD │ │ └── GD32E23x │ │ ├── Include │ │ ├── gd32e23x.h │ │ └── system_gd32e23x.h │ │ └── Source │ │ ├── ARM │ │ └── startup_gd32e23x.s │ │ ├── IAR │ │ └── startup_gd32e23x.s │ │ └── system_gd32e23x.c └── GD32E23x_standard_peripheral │ ├── Include │ ├── gd32e23x_adc.h │ ├── gd32e23x_cmp.h │ ├── gd32e23x_crc.h │ ├── gd32e23x_dbg.h │ ├── gd32e23x_dma.h │ ├── gd32e23x_exti.h │ ├── gd32e23x_fmc.h │ ├── gd32e23x_fwdgt.h │ ├── gd32e23x_gpio.h │ ├── gd32e23x_i2c.h │ ├── gd32e23x_misc.h │ ├── gd32e23x_pmu.h │ ├── gd32e23x_rcu.h │ ├── gd32e23x_rtc.h │ ├── gd32e23x_spi.h │ ├── gd32e23x_syscfg.h │ ├── gd32e23x_timer.h │ ├── gd32e23x_usart.h │ └── gd32e23x_wwdgt.h │ └── Source │ ├── gd32e23x_adc.c │ ├── gd32e23x_cmp.c │ ├── gd32e23x_crc.c │ ├── gd32e23x_dbg.c │ ├── gd32e23x_dma.c │ ├── gd32e23x_exti.c │ ├── gd32e23x_fmc.c │ ├── gd32e23x_fwdgt.c │ ├── gd32e23x_gpio.c │ ├── gd32e23x_i2c.c │ ├── gd32e23x_misc.c │ ├── gd32e23x_pmu.c │ ├── gd32e23x_rcu.c │ ├── gd32e23x_rtc.c │ ├── gd32e23x_spi.c │ ├── gd32e23x_syscfg.c │ ├── gd32e23x_timer.c │ ├── gd32e23x_usart.c │ └── gd32e23x_wwdgt.c ├── GD32E50x ├── CMSIS │ ├── GD │ │ └── GD32E50x │ │ │ ├── Include │ │ │ ├── gd32e50x.h │ │ │ └── system_gd32e50x.h │ │ │ └── Source │ │ │ ├── ARM │ │ │ ├── startup_gd32e508.s │ │ │ ├── startup_gd32e50x_cl.s │ │ │ ├── startup_gd32e50x_hd.s │ │ │ ├── startup_gd32e50x_xd.s │ │ │ └── startup_gd32eprt.s │ │ │ ├── IAR │ │ │ ├── startup_gd32e508.s │ │ │ ├── startup_gd32e50x_cl.s │ │ │ ├── startup_gd32e50x_hd.s │ │ │ ├── startup_gd32e50x_xd.s │ │ │ └── startup_gd32eprt.s │ │ │ └── system_gd32e50x.c │ ├── cmsis_armcc.h │ ├── cmsis_compiler.h │ ├── cmsis_iccarm.h │ ├── cmsis_version.h │ └── core_cm33.h ├── GD32E50x_standard_peripheral │ ├── Include │ │ ├── gd32e50x_adc.h │ │ ├── gd32e50x_bkp.h │ │ ├── gd32e50x_can.h │ │ ├── gd32e50x_cmp.h │ │ ├── gd32e50x_crc.h │ │ ├── gd32e50x_ctc.h │ │ ├── gd32e50x_dac.h │ │ ├── gd32e50x_dbg.h │ │ ├── gd32e50x_dma.h │ │ ├── gd32e50x_enet.h │ │ ├── gd32e50x_exmc.h │ │ ├── gd32e50x_exti.h │ │ ├── gd32e50x_fmc.h │ │ ├── gd32e50x_fwdgt.h │ │ ├── gd32e50x_gpio.h │ │ ├── gd32e50x_i2c.h │ │ ├── gd32e50x_misc.h │ │ ├── gd32e50x_pmu.h │ │ ├── gd32e50x_rcu.h │ │ ├── gd32e50x_rtc.h │ │ ├── gd32e50x_sdio.h │ │ ├── gd32e50x_shrtimer.h │ │ ├── gd32e50x_spi.h │ │ ├── gd32e50x_sqpi.h │ │ ├── gd32e50x_timer.h │ │ ├── gd32e50x_tmu.h │ │ ├── gd32e50x_usart.h │ │ └── gd32e50x_wwdgt.h │ └── Source │ │ ├── gd32e50x_adc.c │ │ ├── gd32e50x_bkp.c │ │ ├── gd32e50x_can.c │ │ ├── gd32e50x_cmp.c │ │ ├── gd32e50x_crc.c │ │ ├── gd32e50x_ctc.c │ │ ├── gd32e50x_dac.c │ │ ├── gd32e50x_dbg.c │ │ ├── gd32e50x_dma.c │ │ ├── gd32e50x_enet.c │ │ ├── gd32e50x_exmc.c │ │ ├── gd32e50x_exti.c │ │ ├── gd32e50x_fmc.c │ │ ├── gd32e50x_fwdgt.c │ │ ├── gd32e50x_gpio.c │ │ ├── gd32e50x_i2c.c │ │ ├── gd32e50x_misc.c │ │ ├── gd32e50x_pmu.c │ │ ├── gd32e50x_rcu.c │ │ ├── gd32e50x_rtc.c │ │ ├── gd32e50x_sdio.c │ │ ├── gd32e50x_shrtimer.c │ │ ├── gd32e50x_spi.c │ │ ├── gd32e50x_sqpi.c │ │ ├── gd32e50x_timer.c │ │ ├── gd32e50x_tmu.c │ │ ├── gd32e50x_usart.c │ │ └── gd32e50x_wwdgt.c ├── GD32E50x_usbd_library │ ├── class │ │ └── device │ │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ │ ├── dfu │ │ │ ├── Include │ │ │ │ └── dfu_core.h │ │ │ └── Source │ │ │ │ └── dfu_core.c │ │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ ├── standard_hid_core.h │ │ │ │ └── usb_hid.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ └── standard_hid_core.c │ │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ └── usbd_msc_scsi.c │ │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ ├── device │ │ ├── Include │ │ │ ├── usb_ch9_std.h │ │ │ ├── usbd_core.h │ │ │ ├── usbd_enum.h │ │ │ ├── usbd_pwr.h │ │ │ └── usbd_transc.h │ │ └── Source │ │ │ ├── usbd_core.c │ │ │ ├── usbd_enum.c │ │ │ ├── usbd_pwr.c │ │ │ └── usbd_transc.c │ └── usbd │ │ ├── Include │ │ ├── usbd_lld_core.h │ │ ├── usbd_lld_int.h │ │ └── usbd_lld_regs.h │ │ └── Source │ │ ├── usbd_lld_core.c │ │ └── usbd_lld_int.c └── GD32E50x_usbhs_library │ ├── device │ ├── class │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ ├── dfu │ │ │ ├── Include │ │ │ │ ├── dfu_core.h │ │ │ │ └── dfu_mal.h │ │ │ └── Source │ │ │ │ ├── dfu_core.c │ │ │ │ └── dfu_mal.c │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ ├── standard_hid_core.h │ │ │ │ └── std_hid_mouse_core.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ ├── standard_hid_core.c │ │ │ │ └── std_hid_mouse_core.c │ │ ├── iap │ │ │ ├── Include │ │ │ │ ├── usb_iap_core.h │ │ │ │ └── usb_iap_libusb.h │ │ │ └── Source │ │ │ │ ├── usb_iap_core.c │ │ │ │ └── usb_iap_libusb.c │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ ├── usbd_msc_efs.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ ├── usbd_msc_efs.c │ │ │ │ └── usbd_msc_scsi.c │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ └── core │ │ ├── Include │ │ ├── usbd_core.h │ │ ├── usbd_enum.h │ │ └── usbd_transc.h │ │ └── Source │ │ ├── usbd_core.c │ │ ├── usbd_enum.c │ │ └── usbd_transc.c │ ├── driver │ ├── Include │ │ ├── drv_usb_core.h │ │ ├── drv_usb_dev.h │ │ ├── drv_usb_host.h │ │ ├── drv_usb_hw.h │ │ ├── drv_usb_regs.h │ │ ├── drv_usbd_int.h │ │ └── drv_usbh_int.h │ └── Source │ │ ├── drv_usb_core.c │ │ ├── drv_usb_dev.c │ │ ├── drv_usb_host.c │ │ ├── drv_usbd_int.c │ │ └── drv_usbh_int.c │ ├── host │ ├── class │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── usbh_cdc_core.h │ │ │ └── Source │ │ │ │ └── usbh_cdc_core.c │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── usbh_hid_core.h │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ └── usbh_hid_usage.h │ │ │ └── Source │ │ │ │ ├── usbh_hid_core.c │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ └── usbh_hid_parser.c │ │ └── msc │ │ │ ├── Include │ │ │ ├── usbh_msc_bbb.h │ │ │ ├── usbh_msc_core.h │ │ │ └── usbh_msc_scsi.h │ │ │ └── Source │ │ │ ├── usbh_msc_bbb.c │ │ │ ├── usbh_msc_core.c │ │ │ ├── usbh_msc_fatfs.c │ │ │ └── usbh_msc_scsi.c │ └── core │ │ ├── Include │ │ ├── usbh_core.h │ │ ├── usbh_enum.h │ │ ├── usbh_pipe.h │ │ └── usbh_transc.h │ │ └── Source │ │ ├── usbh_core.c │ │ ├── usbh_enum.c │ │ ├── usbh_pipe.c │ │ └── usbh_transc.c │ └── ustd │ ├── class │ ├── cdc │ │ └── usb_cdc.h │ ├── hid │ │ └── usb_hid.h │ └── msc │ │ ├── msc_bbb.h │ │ ├── msc_scsi.h │ │ └── usb_msc.h │ └── common │ └── usb_ch9_std.h ├── GD32F10x ├── CMSIS │ ├── GD │ │ └── GD32F10x │ │ │ ├── Include │ │ │ ├── gd32f10x.h │ │ │ └── system_gd32f10x.h │ │ │ └── Source │ │ │ ├── ARM │ │ │ ├── startup_gd32f10x_cl.s │ │ │ ├── startup_gd32f10x_hd.s │ │ │ ├── startup_gd32f10x_md.s │ │ │ └── startup_gd32f10x_xd.s │ │ │ ├── IAR │ │ │ ├── startup_gd32f10x_cl.s │ │ │ ├── startup_gd32f10x_hd.s │ │ │ ├── startup_gd32f10x_md.s │ │ │ └── startup_gd32f10x_xd.s │ │ │ └── system_gd32f10x.c │ ├── core_cm3.h │ ├── core_cmFunc.h │ └── core_cmInstr.h ├── GD32F10x_standard_peripheral │ ├── Include │ │ ├── gd32f10x_adc.h │ │ ├── gd32f10x_bkp.h │ │ ├── gd32f10x_can.h │ │ ├── gd32f10x_crc.h │ │ ├── gd32f10x_dac.h │ │ ├── gd32f10x_dbg.h │ │ ├── gd32f10x_dma.h │ │ ├── gd32f10x_enet.h │ │ ├── gd32f10x_exmc.h │ │ ├── gd32f10x_exti.h │ │ ├── gd32f10x_fmc.h │ │ ├── gd32f10x_fwdgt.h │ │ ├── gd32f10x_gpio.h │ │ ├── gd32f10x_i2c.h │ │ ├── gd32f10x_misc.h │ │ ├── gd32f10x_pmu.h │ │ ├── gd32f10x_rcu.h │ │ ├── gd32f10x_rtc.h │ │ ├── gd32f10x_sdio.h │ │ ├── gd32f10x_spi.h │ │ ├── gd32f10x_timer.h │ │ ├── gd32f10x_usart.h │ │ └── gd32f10x_wwdgt.h │ └── Source │ │ ├── gd32f10x_adc.c │ │ ├── gd32f10x_bkp.c │ │ ├── gd32f10x_can.c │ │ ├── gd32f10x_crc.c │ │ ├── gd32f10x_dac.c │ │ ├── gd32f10x_dbg.c │ │ ├── gd32f10x_dma.c │ │ ├── gd32f10x_enet.c │ │ ├── gd32f10x_exmc.c │ │ ├── gd32f10x_exti.c │ │ ├── gd32f10x_fmc.c │ │ ├── gd32f10x_fwdgt.c │ │ ├── gd32f10x_gpio.c │ │ ├── gd32f10x_i2c.c │ │ ├── gd32f10x_misc.c │ │ ├── gd32f10x_pmu.c │ │ ├── gd32f10x_rcu.c │ │ ├── gd32f10x_rtc.c │ │ ├── gd32f10x_sdio.c │ │ ├── gd32f10x_spi.c │ │ ├── gd32f10x_timer.c │ │ ├── gd32f10x_usart.c │ │ └── gd32f10x_wwdgt.c ├── GD32F10x_usbd_library │ ├── class │ │ └── device │ │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ │ ├── dfu │ │ │ ├── Include │ │ │ │ └── dfu_core.h │ │ │ └── Source │ │ │ │ └── dfu_core.c │ │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ ├── standard_hid_core.h │ │ │ │ └── usb_hid.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ └── standard_hid_core.c │ │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ └── usbd_msc_scsi.c │ │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ ├── device │ │ ├── Include │ │ │ ├── usb_ch9_std.h │ │ │ ├── usbd_core.h │ │ │ ├── usbd_enum.h │ │ │ ├── usbd_pwr.h │ │ │ └── usbd_transc.h │ │ └── Source │ │ │ ├── usbd_core.c │ │ │ ├── usbd_enum.c │ │ │ ├── usbd_pwr.c │ │ │ └── usbd_transc.c │ └── usbd │ │ ├── Include │ │ ├── usbd_lld_core.h │ │ ├── usbd_lld_int.h │ │ └── usbd_lld_regs.h │ │ └── Source │ │ ├── usbd_lld_core.c │ │ └── usbd_lld_int.c └── GD32F10x_usbfs_library │ ├── device │ ├── class │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ ├── dfu │ │ │ ├── Include │ │ │ │ ├── dfu_core.h │ │ │ │ └── dfu_mal.h │ │ │ └── Source │ │ │ │ ├── dfu_core.c │ │ │ │ └── dfu_mal.c │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ └── standard_hid_core.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ └── standard_hid_core.c │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ └── usbd_msc_scsi.c │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ └── core │ │ ├── Include │ │ ├── usbd_core.h │ │ ├── usbd_enum.h │ │ └── usbd_transc.h │ │ └── Source │ │ ├── usbd_core.c │ │ ├── usbd_enum.c │ │ └── usbd_transc.c │ ├── driver │ ├── Include │ │ ├── drv_usb_core.h │ │ ├── drv_usb_dev.h │ │ ├── drv_usb_host.h │ │ ├── drv_usb_hw.h │ │ ├── drv_usb_regs.h │ │ ├── drv_usbd_int.h │ │ └── drv_usbh_int.h │ └── Source │ │ ├── drv_usb_core.c │ │ ├── drv_usb_dev.c │ │ ├── drv_usb_host.c │ │ ├── drv_usbd_int.c │ │ └── drv_usbh_int.c │ ├── host │ ├── class │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── usbh_hid_core.h │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ └── usbh_hid_usage.h │ │ │ └── Source │ │ │ │ ├── usbh_hid_core.c │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ └── usbh_hid_parser.c │ │ └── msc │ │ │ ├── Include │ │ │ ├── usbh_msc_bbb.h │ │ │ ├── usbh_msc_core.h │ │ │ └── usbh_msc_scsi.h │ │ │ └── Source │ │ │ ├── usbh_msc_bbb.c │ │ │ ├── usbh_msc_core.c │ │ │ ├── usbh_msc_fatfs.c │ │ │ └── usbh_msc_scsi.c │ └── core │ │ ├── Include │ │ ├── usbh_core.h │ │ ├── usbh_enum.h │ │ ├── usbh_pipe.h │ │ └── usbh_transc.h │ │ └── Source │ │ ├── usbh_core.c │ │ ├── usbh_enum.c │ │ ├── usbh_pipe.c │ │ └── usbh_transc.c │ └── ustd │ ├── class │ ├── cdc │ │ └── usb_cdc.h │ ├── hid │ │ └── usb_hid.h │ └── msc │ │ ├── msc_bbb.h │ │ ├── msc_scsi.h │ │ └── usb_msc.h │ └── common │ └── usb_ch9_std.h ├── GD32F1x0 ├── CMSIS │ ├── GD │ │ └── GD32F1x0 │ │ │ ├── Include │ │ │ ├── gd32f1x0.h │ │ │ └── system_gd32f1x0.h │ │ │ └── Source │ │ │ ├── ARM │ │ │ └── startup_gd32f1x0.s │ │ │ ├── IAR │ │ │ └── startup_gd32f1x0.s │ │ │ └── system_gd32f1x0.c │ └── core_cm3.h ├── GD32F1x0_standard_peripheral │ ├── Include │ │ ├── gd32f1x0_adc.h │ │ ├── gd32f1x0_can.h │ │ ├── gd32f1x0_cec.h │ │ ├── gd32f1x0_cmp.h │ │ ├── gd32f1x0_crc.h │ │ ├── gd32f1x0_dac.h │ │ ├── gd32f1x0_dbg.h │ │ ├── gd32f1x0_dma.h │ │ ├── gd32f1x0_exti.h │ │ ├── gd32f1x0_fmc.h │ │ ├── gd32f1x0_fwdgt.h │ │ ├── gd32f1x0_gpio.h │ │ ├── gd32f1x0_i2c.h │ │ ├── gd32f1x0_ivref.h │ │ ├── gd32f1x0_misc.h │ │ ├── gd32f1x0_opa.h │ │ ├── gd32f1x0_pmu.h │ │ ├── gd32f1x0_rcu.h │ │ ├── gd32f1x0_rtc.h │ │ ├── gd32f1x0_slcd.h │ │ ├── gd32f1x0_spi.h │ │ ├── gd32f1x0_syscfg.h │ │ ├── gd32f1x0_timer.h │ │ ├── gd32f1x0_tsi.h │ │ ├── gd32f1x0_usart.h │ │ └── gd32f1x0_wwdgt.h │ └── Source │ │ ├── gd32f1x0_adc.c │ │ ├── gd32f1x0_can.c │ │ ├── gd32f1x0_cec.c │ │ ├── gd32f1x0_cmp.c │ │ ├── gd32f1x0_crc.c │ │ ├── gd32f1x0_dac.c │ │ ├── gd32f1x0_dbg.c │ │ ├── gd32f1x0_dma.c │ │ ├── gd32f1x0_exti.c │ │ ├── gd32f1x0_fmc.c │ │ ├── gd32f1x0_fwdgt.c │ │ ├── gd32f1x0_gpio.c │ │ ├── gd32f1x0_i2c.c │ │ ├── gd32f1x0_ivref.c │ │ ├── gd32f1x0_misc.c │ │ ├── gd32f1x0_opa.c │ │ ├── gd32f1x0_pmu.c │ │ ├── gd32f1x0_rcu.c │ │ ├── gd32f1x0_rtc.c │ │ ├── gd32f1x0_slcd.c │ │ ├── gd32f1x0_spi.c │ │ ├── gd32f1x0_syscfg.c │ │ ├── gd32f1x0_timer.c │ │ ├── gd32f1x0_tsi.c │ │ ├── gd32f1x0_usart.c │ │ └── gd32f1x0_wwdgt.c └── GD32F1x0_usbd_library │ ├── class │ └── device │ │ ├── audio │ │ ├── Include │ │ │ ├── audio_core.h │ │ │ └── audio_out_itf.h │ │ └── Source │ │ │ ├── audio_core.c │ │ │ └── audio_out_itf.c │ │ ├── ccid │ │ ├── Include │ │ │ ├── ccid_cmd.h │ │ │ ├── ccid_core.h │ │ │ └── ccid_itf.h │ │ └── Source │ │ │ ├── ccid_cmd.c │ │ │ ├── ccid_core.c │ │ │ └── ccid_itf.c │ │ ├── cdc │ │ ├── Include │ │ │ └── cdc_acm_core.h │ │ └── Source │ │ │ └── cdc_acm_core.c │ │ ├── dfu │ │ ├── Include │ │ │ └── dfu_core.h │ │ └── Source │ │ │ └── dfu_core.c │ │ ├── hid │ │ ├── Include │ │ │ ├── custom_hid_core.h │ │ │ ├── standard_hid_core.h │ │ │ └── usb_hid.h │ │ └── Source │ │ │ ├── custom_hid_core.c │ │ │ └── standard_hid_core.c │ │ ├── iap │ │ ├── Include │ │ │ └── usb_iap_core.h │ │ └── Source │ │ │ └── usb_iap_core.c │ │ ├── msc │ │ ├── Include │ │ │ ├── usbd_msc_bbb.h │ │ │ ├── usbd_msc_core.h │ │ │ ├── usbd_msc_data.h │ │ │ ├── usbd_msc_mem.h │ │ │ └── usbd_msc_scsi.h │ │ └── Source │ │ │ ├── usbd_msc_bbb.c │ │ │ ├── usbd_msc_core.c │ │ │ ├── usbd_msc_data.c │ │ │ └── usbd_msc_scsi.c │ │ └── printer │ │ ├── Include │ │ └── printer_core.h │ │ └── Source │ │ └── printer_core.c │ ├── device │ ├── Include │ │ ├── usb_ch9_std.h │ │ ├── usbd_core.h │ │ ├── usbd_enum.h │ │ ├── usbd_pwr.h │ │ └── usbd_transc.h │ └── Source │ │ ├── usbd_core.c │ │ ├── usbd_enum.c │ │ ├── usbd_pwr.c │ │ └── usbd_transc.c │ └── usbd │ ├── Include │ ├── usbd_lld_core.h │ ├── usbd_lld_int.h │ └── usbd_lld_regs.h │ └── Source │ ├── usbd_lld_core.c │ └── usbd_lld_int.c ├── GD32F20x ├── CMSIS │ ├── GD │ │ └── GD32F20x │ │ │ ├── Include │ │ │ ├── gd32f20x.h │ │ │ └── system_gd32f20x.h │ │ │ └── Source │ │ │ ├── ARM │ │ │ └── startup_gd32f20x_cl.s │ │ │ ├── IAR │ │ │ └── startup_gd32f20x_cl.s │ │ │ └── system_gd32f20x.c │ └── core_cm3.h ├── GD32F20x_standard_peripheral │ ├── Include │ │ ├── gd32f20x_adc.h │ │ ├── gd32f20x_bkp.h │ │ ├── gd32f20x_can.h │ │ ├── gd32f20x_cau.h │ │ ├── gd32f20x_crc.h │ │ ├── gd32f20x_dac.h │ │ ├── gd32f20x_dbg.h │ │ ├── gd32f20x_dci.h │ │ ├── gd32f20x_dma.h │ │ ├── gd32f20x_enet.h │ │ ├── gd32f20x_exmc.h │ │ ├── gd32f20x_exti.h │ │ ├── gd32f20x_fmc.h │ │ ├── gd32f20x_fwdgt.h │ │ ├── gd32f20x_gpio.h │ │ ├── gd32f20x_hau.h │ │ ├── gd32f20x_i2c.h │ │ ├── gd32f20x_misc.h │ │ ├── gd32f20x_pmu.h │ │ ├── gd32f20x_rcu.h │ │ ├── gd32f20x_rtc.h │ │ ├── gd32f20x_sdio.h │ │ ├── gd32f20x_spi.h │ │ ├── gd32f20x_timer.h │ │ ├── gd32f20x_tli.h │ │ ├── gd32f20x_trng.h │ │ ├── gd32f20x_usart.h │ │ └── gd32f20x_wwdgt.h │ └── Source │ │ ├── gd32f20x_adc.c │ │ ├── gd32f20x_bkp.c │ │ ├── gd32f20x_can.c │ │ ├── gd32f20x_cau.c │ │ ├── gd32f20x_cau_aes.c │ │ ├── gd32f20x_cau_des.c │ │ ├── gd32f20x_cau_tdes.c │ │ ├── gd32f20x_crc.c │ │ ├── gd32f20x_dac.c │ │ ├── gd32f20x_dbg.c │ │ ├── gd32f20x_dci.c │ │ ├── gd32f20x_dma.c │ │ ├── gd32f20x_enet.c │ │ ├── gd32f20x_exmc.c │ │ ├── gd32f20x_exti.c │ │ ├── gd32f20x_fmc.c │ │ ├── gd32f20x_fwdgt.c │ │ ├── gd32f20x_gpio.c │ │ ├── gd32f20x_hau.c │ │ ├── gd32f20x_hau_sha_md5.c │ │ ├── gd32f20x_i2c.c │ │ ├── gd32f20x_misc.c │ │ ├── gd32f20x_pmu.c │ │ ├── gd32f20x_rcu.c │ │ ├── gd32f20x_rtc.c │ │ ├── gd32f20x_sdio.c │ │ ├── gd32f20x_spi.c │ │ ├── gd32f20x_timer.c │ │ ├── gd32f20x_tli.c │ │ ├── gd32f20x_trng.c │ │ ├── gd32f20x_usart.c │ │ └── gd32f20x_wwdgt.c ├── GD32F20x_usbfs_driver │ ├── Include │ │ ├── usb_core.h │ │ ├── usb_defines.h │ │ ├── usb_regs.h │ │ ├── usb_std.h │ │ ├── usbd_core.h │ │ ├── usbd_int.h │ │ ├── usbd_std.h │ │ ├── usbh_core.h │ │ ├── usbh_ctrl.h │ │ ├── usbh_hcs.h │ │ ├── usbh_int.h │ │ └── usbh_std.h │ └── Source │ │ ├── usb_core.c │ │ ├── usbd_core.c │ │ ├── usbd_int.c │ │ ├── usbd_std.c │ │ ├── usbh_core.c │ │ ├── usbh_ctrl.c │ │ ├── usbh_hcs.c │ │ ├── usbh_int.c │ │ └── usbh_std.c └── GD32F20x_usbfs_library │ ├── device │ ├── class │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ ├── dfu │ │ │ ├── Include │ │ │ │ ├── dfu_core.h │ │ │ │ └── dfu_mal.h │ │ │ └── Source │ │ │ │ ├── dfu_core.c │ │ │ │ └── dfu_mal.c │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ └── standard_hid_core.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ └── standard_hid_core.c │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ └── usbd_msc_scsi.c │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ └── core │ │ ├── Include │ │ ├── usbd_core.h │ │ ├── usbd_enum.h │ │ └── usbd_transc.h │ │ └── Source │ │ ├── usbd_core.c │ │ ├── usbd_enum.c │ │ └── usbd_transc.c │ ├── driver │ ├── Include │ │ ├── drv_usb_core.h │ │ ├── drv_usb_dev.h │ │ ├── drv_usb_host.h │ │ ├── drv_usb_hw.h │ │ ├── drv_usb_regs.h │ │ ├── drv_usbd_int.h │ │ └── drv_usbh_int.h │ └── Source │ │ ├── drv_usb_core.c │ │ ├── drv_usb_dev.c │ │ ├── drv_usb_host.c │ │ ├── drv_usbd_int.c │ │ └── drv_usbh_int.c │ ├── host │ ├── class │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── usbh_hid_core.h │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ └── usbh_hid_usage.h │ │ │ └── Source │ │ │ │ ├── usbh_hid_core.c │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ └── usbh_hid_parser.c │ │ └── msc │ │ │ ├── Include │ │ │ ├── usbh_msc_bbb.h │ │ │ ├── usbh_msc_core.h │ │ │ └── usbh_msc_scsi.h │ │ │ └── Source │ │ │ ├── usbh_msc_bbb.c │ │ │ ├── usbh_msc_core.c │ │ │ ├── usbh_msc_fatfs.c │ │ │ └── usbh_msc_scsi.c │ └── core │ │ ├── Include │ │ ├── usbh_core.h │ │ ├── usbh_enum.h │ │ ├── usbh_pipe.h │ │ └── usbh_transc.h │ │ └── Source │ │ ├── usbh_core.c │ │ ├── usbh_enum.c │ │ ├── usbh_pipe.c │ │ └── usbh_transc.c │ └── ustd │ ├── class │ ├── cdc │ │ └── usb_cdc.h │ ├── hid │ │ └── usb_hid.h │ └── msc │ │ ├── msc_bbb.h │ │ ├── msc_scsi.h │ │ └── usb_msc.h │ └── common │ └── usb_ch9_std.h ├── GD32F30x ├── CMSIS │ ├── GD │ │ └── GD32F30x │ │ │ ├── Include │ │ │ ├── gd32f30x.h │ │ │ └── system_gd32f30x.h │ │ │ └── Source │ │ │ ├── ARM │ │ │ ├── startup_gd32f30x_cl.s │ │ │ ├── startup_gd32f30x_hd.s │ │ │ └── startup_gd32f30x_xd.s │ │ │ ├── IAR │ │ │ ├── startup_gd32f30x_cl.s │ │ │ ├── startup_gd32f30x_hd.s │ │ │ └── startup_gd32f30x_xd.s │ │ │ └── system_gd32f30x.c │ ├── core_cm4.h │ ├── core_cm4_simd.h │ ├── core_cmFunc.h │ └── core_cmInstr.h ├── GD32F30x_standard_peripheral │ ├── Include │ │ ├── gd32f30x_adc.h │ │ ├── gd32f30x_bkp.h │ │ ├── gd32f30x_can.h │ │ ├── gd32f30x_crc.h │ │ ├── gd32f30x_ctc.h │ │ ├── gd32f30x_dac.h │ │ ├── gd32f30x_dbg.h │ │ ├── gd32f30x_dma.h │ │ ├── gd32f30x_enet.h │ │ ├── gd32f30x_exmc.h │ │ ├── gd32f30x_exti.h │ │ ├── gd32f30x_fmc.h │ │ ├── gd32f30x_fwdgt.h │ │ ├── gd32f30x_gpio.h │ │ ├── gd32f30x_i2c.h │ │ ├── gd32f30x_misc.h │ │ ├── gd32f30x_pmu.h │ │ ├── gd32f30x_rcu.h │ │ ├── gd32f30x_rtc.h │ │ ├── gd32f30x_sdio.h │ │ ├── gd32f30x_spi.h │ │ ├── gd32f30x_timer.h │ │ ├── gd32f30x_usart.h │ │ └── gd32f30x_wwdgt.h │ └── Source │ │ ├── gd32f30x_adc.c │ │ ├── gd32f30x_bkp.c │ │ ├── gd32f30x_can.c │ │ ├── gd32f30x_crc.c │ │ ├── gd32f30x_ctc.c │ │ ├── gd32f30x_dac.c │ │ ├── gd32f30x_dbg.c │ │ ├── gd32f30x_dma.c │ │ ├── gd32f30x_enet.c │ │ ├── gd32f30x_exmc.c │ │ ├── gd32f30x_exti.c │ │ ├── gd32f30x_fmc.c │ │ ├── gd32f30x_fwdgt.c │ │ ├── gd32f30x_gpio.c │ │ ├── gd32f30x_i2c.c │ │ ├── gd32f30x_misc.c │ │ ├── gd32f30x_pmu.c │ │ ├── gd32f30x_rcu.c │ │ ├── gd32f30x_rtc.c │ │ ├── gd32f30x_sdio.c │ │ ├── gd32f30x_spi.c │ │ ├── gd32f30x_timer.c │ │ ├── gd32f30x_usart.c │ │ └── gd32f30x_wwdgt.c ├── GD32F30x_usbd_library │ ├── class │ │ └── device │ │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ │ ├── dfu │ │ │ ├── Include │ │ │ │ ├── dfu_core.h │ │ │ │ └── dfu_mem.h │ │ │ └── Source │ │ │ │ ├── dfu_core.c │ │ │ │ └── dfu_mem.c │ │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ ├── standard_hid_core.h │ │ │ │ ├── std_hid_mouse_core.h │ │ │ │ └── usb_hid.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ ├── standard_hid_core.c │ │ │ │ └── std_hid_mouse_core.c │ │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ └── usbd_msc_scsi.c │ │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ ├── device │ │ ├── Include │ │ │ ├── usb_ch9_std.h │ │ │ ├── usbd_core.h │ │ │ ├── usbd_enum.h │ │ │ ├── usbd_pwr.h │ │ │ └── usbd_transc.h │ │ └── Source │ │ │ ├── usbd_core.c │ │ │ ├── usbd_enum.c │ │ │ ├── usbd_pwr.c │ │ │ └── usbd_transc.c │ └── usbd │ │ ├── Include │ │ ├── usbd_lld_core.h │ │ ├── usbd_lld_int.h │ │ └── usbd_lld_regs.h │ │ └── Source │ │ ├── usbd_lld_core.c │ │ └── usbd_lld_int.c └── GD32F30x_usbfs_library │ ├── device │ ├── class │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ ├── dfu │ │ │ ├── Include │ │ │ │ ├── dfu_core.h │ │ │ │ └── dfu_mem.h │ │ │ └── Source │ │ │ │ ├── dfu_core.c │ │ │ │ └── dfu_mem.c │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ └── standard_hid_core.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ └── standard_hid_core.c │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ └── usbd_msc_scsi.c │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ └── core │ │ ├── Include │ │ ├── usbd_core.h │ │ ├── usbd_enum.h │ │ └── usbd_transc.h │ │ └── Source │ │ ├── usbd_core.c │ │ ├── usbd_enum.c │ │ └── usbd_transc.c │ ├── driver │ ├── Include │ │ ├── drv_usb_core.h │ │ ├── drv_usb_dev.h │ │ ├── drv_usb_host.h │ │ ├── drv_usb_hw.h │ │ ├── drv_usb_regs.h │ │ ├── drv_usbd_int.h │ │ └── drv_usbh_int.h │ └── Source │ │ ├── drv_usb_core.c │ │ ├── drv_usb_dev.c │ │ ├── drv_usb_host.c │ │ ├── drv_usbd_int.c │ │ └── drv_usbh_int.c │ ├── host │ ├── class │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── usbh_hid_core.h │ │ │ │ └── usbh_standard_hid.h │ │ │ └── Source │ │ │ │ ├── usbh_hid_core.c │ │ │ │ └── usbh_standard_hid.c │ │ └── msc │ │ │ ├── Include │ │ │ ├── usbh_msc_bbb.h │ │ │ ├── usbh_msc_core.h │ │ │ └── usbh_msc_scsi.h │ │ │ └── Source │ │ │ ├── usbh_msc_bbb.c │ │ │ ├── usbh_msc_core.c │ │ │ ├── usbh_msc_fatfs.c │ │ │ └── usbh_msc_scsi.c │ └── core │ │ ├── Include │ │ ├── usbh_core.h │ │ ├── usbh_enum.h │ │ ├── usbh_pipe.h │ │ └── usbh_transc.h │ │ └── Source │ │ ├── usbh_core.c │ │ ├── usbh_enum.c │ │ ├── usbh_pipe.c │ │ └── usbh_transc.c │ └── ustd │ ├── class │ ├── cdc │ │ └── usb_cdc.h │ ├── hid │ │ └── usb_hid.h │ └── msc │ │ ├── msc_bbb.h │ │ ├── msc_scsi.h │ │ └── usb_msc.h │ └── common │ └── usb_ch9_std.h ├── GD32F3x0 ├── CMSIS │ ├── GD │ │ └── GD32F3x0 │ │ │ ├── Include │ │ │ ├── gd32f3x0.h │ │ │ └── system_gd32f3x0.h │ │ │ └── Source │ │ │ ├── ARM │ │ │ └── startup_gd32f3x0.s │ │ │ ├── IAR │ │ │ └── startup_gd32f3x0.s │ │ │ └── system_gd32f3x0.c │ ├── core_cm4.h │ ├── core_cm4_simd.h │ ├── core_cmFunc.h │ └── core_cmInstr.h ├── GD32F3x0_standard_peripheral │ ├── Include │ │ ├── gd32f3x0_adc.h │ │ ├── gd32f3x0_cec.h │ │ ├── gd32f3x0_cmp.h │ │ ├── gd32f3x0_crc.h │ │ ├── gd32f3x0_ctc.h │ │ ├── gd32f3x0_dac.h │ │ ├── gd32f3x0_dbg.h │ │ ├── gd32f3x0_dma.h │ │ ├── gd32f3x0_exti.h │ │ ├── gd32f3x0_fmc.h │ │ ├── gd32f3x0_fwdgt.h │ │ ├── gd32f3x0_gpio.h │ │ ├── gd32f3x0_i2c.h │ │ ├── gd32f3x0_misc.h │ │ ├── gd32f3x0_pmu.h │ │ ├── gd32f3x0_rcu.h │ │ ├── gd32f3x0_rtc.h │ │ ├── gd32f3x0_spi.h │ │ ├── gd32f3x0_syscfg.h │ │ ├── gd32f3x0_timer.h │ │ ├── gd32f3x0_tsi.h │ │ ├── gd32f3x0_usart.h │ │ └── gd32f3x0_wwdgt.h │ └── Source │ │ ├── gd32f3x0_adc.c │ │ ├── gd32f3x0_cec.c │ │ ├── gd32f3x0_cmp.c │ │ ├── gd32f3x0_crc.c │ │ ├── gd32f3x0_ctc.c │ │ ├── gd32f3x0_dac.c │ │ ├── gd32f3x0_dbg.c │ │ ├── gd32f3x0_dma.c │ │ ├── gd32f3x0_exti.c │ │ ├── gd32f3x0_fmc.c │ │ ├── gd32f3x0_fwdgt.c │ │ ├── gd32f3x0_gpio.c │ │ ├── gd32f3x0_i2c.c │ │ ├── gd32f3x0_misc.c │ │ ├── gd32f3x0_pmu.c │ │ ├── gd32f3x0_rcu.c │ │ ├── gd32f3x0_rtc.c │ │ ├── gd32f3x0_spi.c │ │ ├── gd32f3x0_syscfg.c │ │ ├── gd32f3x0_timer.c │ │ ├── gd32f3x0_tsi.c │ │ ├── gd32f3x0_usart.c │ │ └── gd32f3x0_wwdgt.c └── GD32F3x0_usbfs_library │ ├── device │ ├── class │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ ├── dfu │ │ │ ├── Include │ │ │ │ ├── dfu_core.h │ │ │ │ └── dfu_mal.h │ │ │ └── Source │ │ │ │ ├── dfu_core.c │ │ │ │ └── dfu_mal.c │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ └── standard_hid_core.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ └── standard_hid_core.c │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ └── usbd_msc_scsi.c │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ └── core │ │ ├── Include │ │ ├── usbd_core.h │ │ ├── usbd_enum.h │ │ └── usbd_transc.h │ │ └── Source │ │ ├── usbd_core.c │ │ ├── usbd_enum.c │ │ └── usbd_transc.c │ ├── driver │ ├── Include │ │ ├── drv_usb_core.h │ │ ├── drv_usb_dev.h │ │ ├── drv_usb_host.h │ │ ├── drv_usb_hw.h │ │ ├── drv_usb_regs.h │ │ ├── drv_usbd_int.h │ │ └── drv_usbh_int.h │ └── Source │ │ ├── drv_usb_core.c │ │ ├── drv_usb_dev.c │ │ ├── drv_usb_host.c │ │ ├── drv_usbd_int.c │ │ └── drv_usbh_int.c │ ├── host │ ├── class │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── usbh_hid_core.h │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ └── usbh_hid_usage.h │ │ │ └── Source │ │ │ │ ├── usbh_hid_core.c │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ └── usbh_hid_parser.c │ │ └── msc │ │ │ ├── Include │ │ │ ├── usbh_msc_bbb.h │ │ │ ├── usbh_msc_core.h │ │ │ └── usbh_msc_scsi.h │ │ │ └── Source │ │ │ ├── usbh_msc_bbb.c │ │ │ ├── usbh_msc_core.c │ │ │ ├── usbh_msc_fatfs.c │ │ │ └── usbh_msc_scsi.c │ └── core │ │ ├── Include │ │ ├── usbh_core.h │ │ ├── usbh_enum.h │ │ ├── usbh_pipe.h │ │ └── usbh_transc.h │ │ └── Source │ │ ├── usbh_core.c │ │ ├── usbh_enum.c │ │ ├── usbh_pipe.c │ │ └── usbh_transc.c │ └── ustd │ ├── class │ ├── cdc │ │ └── usb_cdc.h │ ├── hid │ │ └── usb_hid.h │ └── msc │ │ ├── msc_bbb.h │ │ ├── msc_scsi.h │ │ └── usb_msc.h │ └── common │ └── usb_ch9_std.h ├── GD32F403 ├── CMSIS │ ├── GD │ │ └── GD32F403 │ │ │ ├── Include │ │ │ ├── gd32f403.h │ │ │ └── system_gd32f403.h │ │ │ └── Source │ │ │ ├── ARM │ │ │ └── startup_gd32f403.s │ │ │ ├── IAR │ │ │ └── startup_gd32f403.s │ │ │ └── system_gd32f403.c │ ├── core_cm4.h │ ├── core_cm4_simd.h │ ├── core_cmFunc.h │ └── core_cmInstr.h ├── GD32F403_standard_peripheral │ ├── Include │ │ ├── gd32f403_adc.h │ │ ├── gd32f403_bkp.h │ │ ├── gd32f403_can.h │ │ ├── gd32f403_crc.h │ │ ├── gd32f403_ctc.h │ │ ├── gd32f403_dac.h │ │ ├── gd32f403_dbg.h │ │ ├── gd32f403_dma.h │ │ ├── gd32f403_exmc.h │ │ ├── gd32f403_exti.h │ │ ├── gd32f403_fmc.h │ │ ├── gd32f403_fwdgt.h │ │ ├── gd32f403_gpio.h │ │ ├── gd32f403_i2c.h │ │ ├── gd32f403_misc.h │ │ ├── gd32f403_pmu.h │ │ ├── gd32f403_rcu.h │ │ ├── gd32f403_rtc.h │ │ ├── gd32f403_sdio.h │ │ ├── gd32f403_spi.h │ │ ├── gd32f403_timer.h │ │ ├── gd32f403_usart.h │ │ └── gd32f403_wwdgt.h │ └── Source │ │ ├── gd32f403_adc.c │ │ ├── gd32f403_bkp.c │ │ ├── gd32f403_can.c │ │ ├── gd32f403_crc.c │ │ ├── gd32f403_ctc.c │ │ ├── gd32f403_dac.c │ │ ├── gd32f403_dbg.c │ │ ├── gd32f403_dma.c │ │ ├── gd32f403_exmc.c │ │ ├── gd32f403_exti.c │ │ ├── gd32f403_fmc.c │ │ ├── gd32f403_fwdgt.c │ │ ├── gd32f403_gpio.c │ │ ├── gd32f403_i2c.c │ │ ├── gd32f403_misc.c │ │ ├── gd32f403_pmu.c │ │ ├── gd32f403_rcu.c │ │ ├── gd32f403_rtc.c │ │ ├── gd32f403_sdio.c │ │ ├── gd32f403_spi.c │ │ ├── gd32f403_timer.c │ │ ├── gd32f403_usart.c │ │ └── gd32f403_wwdgt.c └── GD32F403_usbfs_library │ ├── device │ ├── class │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ ├── dfu │ │ │ ├── Include │ │ │ │ ├── dfu_core.h │ │ │ │ └── dfu_mal.h │ │ │ └── Source │ │ │ │ ├── dfu_core.c │ │ │ │ └── dfu_mal.c │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ └── standard_hid_core.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ └── standard_hid_core.c │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ └── usbd_msc_scsi.c │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ └── core │ │ ├── Include │ │ ├── usbd_core.h │ │ ├── usbd_enum.h │ │ └── usbd_transc.h │ │ └── Source │ │ ├── usbd_core.c │ │ ├── usbd_enum.c │ │ └── usbd_transc.c │ ├── driver │ ├── Include │ │ ├── drv_usb_core.h │ │ ├── drv_usb_dev.h │ │ ├── drv_usb_host.h │ │ ├── drv_usb_hw.h │ │ ├── drv_usb_regs.h │ │ ├── drv_usbd_int.h │ │ └── drv_usbh_int.h │ └── Source │ │ ├── drv_usb_core.c │ │ ├── drv_usb_dev.c │ │ ├── drv_usb_host.c │ │ ├── drv_usbd_int.c │ │ └── drv_usbh_int.c │ ├── host │ ├── class │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── usbh_hid_core.h │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ └── usbh_hid_usage.h │ │ │ └── Source │ │ │ │ ├── usbh_hid_core.c │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ └── usbh_hid_parser.c │ │ └── msc │ │ │ ├── Include │ │ │ ├── usbh_msc_bbb.h │ │ │ ├── usbh_msc_core.h │ │ │ └── usbh_msc_scsi.h │ │ │ └── Source │ │ │ ├── usbh_msc_bbb.c │ │ │ ├── usbh_msc_core.c │ │ │ ├── usbh_msc_fatfs.c │ │ │ └── usbh_msc_scsi.c │ └── core │ │ ├── Include │ │ ├── usbh_core.h │ │ ├── usbh_enum.h │ │ ├── usbh_pipe.h │ │ └── usbh_transc.h │ │ └── Source │ │ ├── usbh_core.c │ │ ├── usbh_enum.c │ │ ├── usbh_pipe.c │ │ └── usbh_transc.c │ └── ustd │ ├── class │ ├── cdc │ │ └── usb_cdc.h │ ├── hid │ │ └── usb_hid.h │ └── msc │ │ ├── msc_bbb.h │ │ ├── msc_scsi.h │ │ └── usb_msc.h │ └── common │ └── usb_ch9_std.h ├── GD32F4xx ├── CMSIS │ ├── GD │ │ └── GD32F4xx │ │ │ ├── Include │ │ │ ├── gd32f4xx.h │ │ │ └── system_gd32f4xx.h │ │ │ └── Source │ │ │ ├── ARM │ │ │ ├── startup_gd32f405_425.s │ │ │ ├── startup_gd32f407_427.s │ │ │ └── startup_gd32f450_470.s │ │ │ ├── IAR │ │ │ ├── startup_gd32f405_425.s │ │ │ ├── startup_gd32f407_427.s │ │ │ └── startup_gd32f450_470.s │ │ │ └── system_gd32f4xx.c │ ├── core_cm4.h │ ├── core_cm4_simd.h │ ├── core_cmFunc.h │ └── core_cmInstr.h ├── GD32F4xx_standard_peripheral │ ├── Include │ │ ├── gd32f4xx_adc.h │ │ ├── gd32f4xx_can.h │ │ ├── gd32f4xx_crc.h │ │ ├── gd32f4xx_ctc.h │ │ ├── gd32f4xx_dac.h │ │ ├── gd32f4xx_dbg.h │ │ ├── gd32f4xx_dci.h │ │ ├── gd32f4xx_dma.h │ │ ├── gd32f4xx_enet.h │ │ ├── gd32f4xx_exmc.h │ │ ├── gd32f4xx_exti.h │ │ ├── gd32f4xx_fmc.h │ │ ├── gd32f4xx_fwdgt.h │ │ ├── gd32f4xx_gpio.h │ │ ├── gd32f4xx_i2c.h │ │ ├── gd32f4xx_ipa.h │ │ ├── gd32f4xx_iref.h │ │ ├── gd32f4xx_misc.h │ │ ├── gd32f4xx_pmu.h │ │ ├── gd32f4xx_rcu.h │ │ ├── gd32f4xx_rtc.h │ │ ├── gd32f4xx_sdio.h │ │ ├── gd32f4xx_spi.h │ │ ├── gd32f4xx_syscfg.h │ │ ├── gd32f4xx_timer.h │ │ ├── gd32f4xx_tli.h │ │ ├── gd32f4xx_trng.h │ │ ├── gd32f4xx_usart.h │ │ └── gd32f4xx_wwdgt.h │ └── Source │ │ ├── gd32f4xx_adc.c │ │ ├── gd32f4xx_can.c │ │ ├── gd32f4xx_crc.c │ │ ├── gd32f4xx_ctc.c │ │ ├── gd32f4xx_dac.c │ │ ├── gd32f4xx_dbg.c │ │ ├── gd32f4xx_dci.c │ │ ├── gd32f4xx_dma.c │ │ ├── gd32f4xx_enet.c │ │ ├── gd32f4xx_exmc.c │ │ ├── gd32f4xx_exti.c │ │ ├── gd32f4xx_fmc.c │ │ ├── gd32f4xx_fwdgt.c │ │ ├── gd32f4xx_gpio.c │ │ ├── gd32f4xx_i2c.c │ │ ├── gd32f4xx_ipa.c │ │ ├── gd32f4xx_iref.c │ │ ├── gd32f4xx_misc.c │ │ ├── gd32f4xx_pmu.c │ │ ├── gd32f4xx_rcu.c │ │ ├── gd32f4xx_rtc.c │ │ ├── gd32f4xx_sdio.c │ │ ├── gd32f4xx_spi.c │ │ ├── gd32f4xx_syscfg.c │ │ ├── gd32f4xx_timer.c │ │ ├── gd32f4xx_tli.c │ │ ├── gd32f4xx_trng.c │ │ ├── gd32f4xx_usart.c │ │ └── gd32f4xx_wwdgt.c └── GD32F4xx_usb_library │ ├── device │ ├── class │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ ├── dfu │ │ │ ├── Include │ │ │ │ ├── dfu_core.h │ │ │ │ └── dfu_mem.h │ │ │ └── Source │ │ │ │ ├── dfu_core.c │ │ │ │ └── dfu_mem.c │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ └── standard_hid_core.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ └── standard_hid_core.c │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ └── usbd_msc_scsi.c │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ └── core │ │ ├── Include │ │ ├── usbd_core.h │ │ ├── usbd_enum.h │ │ └── usbd_transc.h │ │ └── Source │ │ ├── usbd_core.c │ │ ├── usbd_enum.c │ │ └── usbd_transc.c │ ├── driver │ ├── Include │ │ ├── drv_usb_core.h │ │ ├── drv_usb_dev.h │ │ ├── drv_usb_host.h │ │ ├── drv_usb_hw.h │ │ ├── drv_usb_regs.h │ │ ├── drv_usbd_int.h │ │ └── drv_usbh_int.h │ └── Source │ │ ├── drv_usb_core.c │ │ ├── drv_usb_dev.c │ │ ├── drv_usb_host.c │ │ ├── drv_usbd_int.c │ │ └── drv_usbh_int.c │ ├── host │ ├── class │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── usbh_hid_core.h │ │ │ │ └── usbh_standard_hid.h │ │ │ └── Source │ │ │ │ ├── usbh_hid_core.c │ │ │ │ └── usbh_standard_hid.c │ │ └── msc │ │ │ ├── Include │ │ │ ├── usbh_msc_bbb.h │ │ │ ├── usbh_msc_core.h │ │ │ └── usbh_msc_scsi.h │ │ │ └── Source │ │ │ ├── usbh_msc_bbb.c │ │ │ ├── usbh_msc_core.c │ │ │ ├── usbh_msc_fatfs.c │ │ │ └── usbh_msc_scsi.c │ └── core │ │ ├── Include │ │ ├── usbh_core.h │ │ ├── usbh_enum.h │ │ ├── usbh_pipe.h │ │ └── usbh_transc.h │ │ └── Source │ │ ├── usbh_core.c │ │ ├── usbh_enum.c │ │ ├── usbh_pipe.c │ │ └── usbh_transc.c │ └── ustd │ ├── class │ ├── cdc │ │ └── usb_cdc.h │ ├── hid │ │ └── usb_hid.h │ └── msc │ │ ├── msc_bbb.h │ │ ├── msc_scsi.h │ │ └── usb_msc.h │ └── common │ └── usb_ch9_std.h ├── GD32L23x ├── CMSIS │ └── GD │ │ └── GD32L23x │ │ ├── Include │ │ ├── gd32l23x.h │ │ └── system_gd32l23x.h │ │ └── Source │ │ ├── ARM │ │ └── startup_gd32l23x.s │ │ ├── IAR │ │ └── startup_gd32l23x.s │ │ └── system_gd32l23x.c ├── GD32L23x_standard_peripheral │ ├── Include │ │ ├── gd32l23x_adc.h │ │ ├── gd32l23x_cau.h │ │ ├── gd32l23x_cmp.h │ │ ├── gd32l23x_crc.h │ │ ├── gd32l23x_ctc.h │ │ ├── gd32l23x_dac.h │ │ ├── gd32l23x_dbg.h │ │ ├── gd32l23x_dma.h │ │ ├── gd32l23x_exti.h │ │ ├── gd32l23x_fmc.h │ │ ├── gd32l23x_fwdgt.h │ │ ├── gd32l23x_gpio.h │ │ ├── gd32l23x_i2c.h │ │ ├── gd32l23x_lptimer.h │ │ ├── gd32l23x_lpuart.h │ │ ├── gd32l23x_misc.h │ │ ├── gd32l23x_pmu.h │ │ ├── gd32l23x_rcu.h │ │ ├── gd32l23x_rtc.h │ │ ├── gd32l23x_slcd.h │ │ ├── gd32l23x_spi.h │ │ ├── gd32l23x_syscfg.h │ │ ├── gd32l23x_timer.h │ │ ├── gd32l23x_trng.h │ │ ├── gd32l23x_usart.h │ │ ├── gd32l23x_vref.h │ │ └── gd32l23x_wwdgt.h │ └── Source │ │ ├── gd32l23x_adc.c │ │ ├── gd32l23x_cau.c │ │ ├── gd32l23x_cau_aes.c │ │ ├── gd32l23x_cau_des.c │ │ ├── gd32l23x_cau_tdes.c │ │ ├── gd32l23x_cmp.c │ │ ├── gd32l23x_crc.c │ │ ├── gd32l23x_ctc.c │ │ ├── gd32l23x_dac.c │ │ ├── gd32l23x_dbg.c │ │ ├── gd32l23x_dma.c │ │ ├── gd32l23x_exti.c │ │ ├── gd32l23x_fmc.c │ │ ├── gd32l23x_fwdgt.c │ │ ├── gd32l23x_gpio.c │ │ ├── gd32l23x_i2c.c │ │ ├── gd32l23x_lptimer.c │ │ ├── gd32l23x_lpuart.c │ │ ├── gd32l23x_misc.c │ │ ├── gd32l23x_pmu.c │ │ ├── gd32l23x_rcu.c │ │ ├── gd32l23x_rtc.c │ │ ├── gd32l23x_slcd.c │ │ ├── gd32l23x_spi.c │ │ ├── gd32l23x_syscfg.c │ │ ├── gd32l23x_timer.c │ │ ├── gd32l23x_trng.c │ │ ├── gd32l23x_usart.c │ │ ├── gd32l23x_vref.c │ │ └── gd32l23x_wwdgt.c └── GD32L23x_usbd_library │ ├── class │ └── device │ │ ├── audio │ │ ├── Include │ │ │ ├── audio_core.h │ │ │ └── audio_out_itf.h │ │ └── Source │ │ │ ├── audio_core.c │ │ │ └── audio_out_itf.c │ │ ├── cdc │ │ ├── Include │ │ │ └── cdc_acm_core.h │ │ └── Source │ │ │ └── cdc_acm_core.c │ │ ├── dfu │ │ ├── Include │ │ │ └── dfu_core.h │ │ └── Source │ │ │ └── dfu_core.c │ │ ├── hid │ │ ├── Include │ │ │ ├── custom_hid_core.h │ │ │ ├── standard_hid_core.h │ │ │ └── usb_hid.h │ │ └── Source │ │ │ ├── custom_hid_core.c │ │ │ └── standard_hid_core.c │ │ ├── iap │ │ ├── Include │ │ │ └── usb_iap_core.h │ │ └── Source │ │ │ └── usb_iap_core.c │ │ ├── msc │ │ ├── Include │ │ │ ├── msc_bbb_scsi.h │ │ │ ├── msc_core.h │ │ │ └── msc_mem.h │ │ └── Source │ │ │ ├── msc_bbb_scsi.c │ │ │ └── msc_core.c │ │ └── printer │ │ ├── Include │ │ └── printer_core.h │ │ └── Source │ │ └── printer_core.c │ ├── device │ ├── Include │ │ ├── usb_ch9_std.h │ │ ├── usbd_core.h │ │ ├── usbd_enum.h │ │ ├── usbd_pwr.h │ │ └── usbd_transc.h │ └── Source │ │ ├── usbd_core.c │ │ ├── usbd_enum.c │ │ ├── usbd_pwr.c │ │ └── usbd_transc.c │ └── usbd │ ├── Include │ ├── usbd_lld_core.h │ ├── usbd_lld_int.h │ └── usbd_lld_regs.h │ └── Source │ ├── usbd_lld_core.c │ └── usbd_lld_int.c ├── GD32VF10x ├── GD32VF103_standard_peripheral │ ├── Include │ │ ├── gd32vf103_adc.h │ │ ├── gd32vf103_bkp.h │ │ ├── gd32vf103_can.h │ │ ├── gd32vf103_crc.h │ │ ├── gd32vf103_dac.h │ │ ├── gd32vf103_dbg.h │ │ ├── gd32vf103_dma.h │ │ ├── gd32vf103_eclic.h │ │ ├── gd32vf103_exmc.h │ │ ├── gd32vf103_exti.h │ │ ├── gd32vf103_fmc.h │ │ ├── gd32vf103_fwdgt.h │ │ ├── gd32vf103_gpio.h │ │ ├── gd32vf103_i2c.h │ │ ├── gd32vf103_pmu.h │ │ ├── gd32vf103_rcu.h │ │ ├── gd32vf103_rtc.h │ │ ├── gd32vf103_spi.h │ │ ├── gd32vf103_timer.h │ │ ├── gd32vf103_usart.h │ │ └── gd32vf103_wwdgt.h │ ├── Source │ │ ├── gd32vf103_adc.c │ │ ├── gd32vf103_bkp.c │ │ ├── gd32vf103_can.c │ │ ├── gd32vf103_crc.c │ │ ├── gd32vf103_dac.c │ │ ├── gd32vf103_dbg.c │ │ ├── gd32vf103_dma.c │ │ ├── gd32vf103_eclic.c │ │ ├── gd32vf103_exmc.c │ │ ├── gd32vf103_exti.c │ │ ├── gd32vf103_fmc.c │ │ ├── gd32vf103_fwdgt.c │ │ ├── gd32vf103_gpio.c │ │ ├── gd32vf103_i2c.c │ │ ├── gd32vf103_pmu.c │ │ ├── gd32vf103_rcu.c │ │ ├── gd32vf103_rtc.c │ │ ├── gd32vf103_spi.c │ │ ├── gd32vf103_timer.c │ │ ├── gd32vf103_usart.c │ │ └── gd32vf103_wwdgt.c │ ├── gd32vf103.h │ ├── system_gd32vf103.c │ └── system_gd32vf103.h ├── GD32VF103_usbfs_library │ ├── device │ │ ├── class │ │ │ ├── audio │ │ │ │ ├── Include │ │ │ │ │ ├── audio_core.h │ │ │ │ │ └── audio_out_itf.h │ │ │ │ └── Source │ │ │ │ │ ├── audio_core.c │ │ │ │ │ └── audio_out_itf.c │ │ │ ├── cdc │ │ │ │ ├── Include │ │ │ │ │ └── cdc_acm_core.h │ │ │ │ └── Source │ │ │ │ │ └── cdc_acm_core.c │ │ │ ├── dfu │ │ │ │ ├── Include │ │ │ │ │ ├── dfu_core.h │ │ │ │ │ └── dfu_mal.h │ │ │ │ └── Source │ │ │ │ │ ├── dfu_core.c │ │ │ │ │ └── dfu_mal.c │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── custom_hid_core.h │ │ │ │ │ └── standard_hid_core.h │ │ │ │ └── Source │ │ │ │ │ ├── custom_hid_core.c │ │ │ │ │ └── standard_hid_core.c │ │ │ ├── iap │ │ │ │ ├── Include │ │ │ │ │ └── usb_iap_core.h │ │ │ │ └── Source │ │ │ │ │ └── usb_iap_core.c │ │ │ ├── msc │ │ │ │ ├── Include │ │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ │ ├── usbd_msc_core.h │ │ │ │ │ ├── usbd_msc_data.h │ │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ │ └── usbd_msc_scsi.h │ │ │ │ └── Source │ │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ │ ├── usbd_msc_core.c │ │ │ │ │ ├── usbd_msc_data.c │ │ │ │ │ └── usbd_msc_scsi.c │ │ │ └── printer │ │ │ │ ├── Include │ │ │ │ └── printer_core.h │ │ │ │ └── Source │ │ │ │ └── printer_core.c │ │ └── core │ │ │ ├── Include │ │ │ ├── usbd_core.h │ │ │ ├── usbd_enum.h │ │ │ └── usbd_transc.h │ │ │ └── Source │ │ │ ├── usbd_core.c │ │ │ ├── usbd_enum.c │ │ │ └── usbd_transc.c │ ├── driver │ │ ├── Include │ │ │ ├── drv_usb_core.h │ │ │ ├── drv_usb_dev.h │ │ │ ├── drv_usb_host.h │ │ │ ├── drv_usb_hw.h │ │ │ ├── drv_usb_regs.h │ │ │ ├── drv_usbd_int.h │ │ │ └── drv_usbh_int.h │ │ └── Source │ │ │ ├── drv_usb_core.c │ │ │ ├── drv_usb_dev.c │ │ │ ├── drv_usb_host.c │ │ │ ├── drv_usbd_int.c │ │ │ └── drv_usbh_int.c │ ├── host │ │ ├── class │ │ │ ├── hid │ │ │ │ ├── Include │ │ │ │ │ ├── usbh_hid_core.h │ │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ │ └── usbh_hid_usage.h │ │ │ │ └── Source │ │ │ │ │ ├── usbh_hid_core.c │ │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ │ └── usbh_hid_parser.c │ │ │ └── msc │ │ │ │ ├── Include │ │ │ │ ├── usbh_msc_bbb.h │ │ │ │ ├── usbh_msc_core.h │ │ │ │ └── usbh_msc_scsi.h │ │ │ │ └── Source │ │ │ │ ├── usbh_msc_bbb.c │ │ │ │ ├── usbh_msc_core.c │ │ │ │ ├── usbh_msc_fatfs.c │ │ │ │ └── usbh_msc_scsi.c │ │ └── core │ │ │ ├── Include │ │ │ ├── usbh_core.h │ │ │ ├── usbh_enum.h │ │ │ ├── usbh_pipe.h │ │ │ └── usbh_transc.h │ │ │ └── Source │ │ │ ├── usbh_core.c │ │ │ ├── usbh_enum.c │ │ │ ├── usbh_pipe.c │ │ │ └── usbh_transc.c │ └── ustd │ │ ├── class │ │ ├── cdc │ │ │ └── usb_cdc.h │ │ ├── hid │ │ │ └── usb_hid.h │ │ └── msc │ │ │ ├── msc_bbb.h │ │ │ ├── msc_scsi.h │ │ │ └── usb_msc.h │ │ └── common │ │ └── usb_ch9_std.h └── RISCV │ ├── drivers │ ├── n200_eclic.h │ ├── n200_func.c │ ├── n200_func.h │ ├── n200_timer.h │ ├── riscv_bits.h │ ├── riscv_const.h │ └── riscv_encoding.h │ ├── env_Eclipse │ ├── GD32VF103x4.lds │ ├── GD32VF103x6.lds │ ├── GD32VF103x8.lds │ ├── GD32VF103xB.lds │ ├── entry.S │ ├── handlers.c │ ├── init.c │ ├── start.S │ └── your_printf.c │ ├── env_IAR │ ├── compiler.h │ ├── cstartup.s │ └── low_level_init.c │ └── stubs │ ├── _exit.c │ ├── close.c │ ├── fstat.c │ ├── isatty.c │ ├── lseek.c │ ├── read.c │ ├── sbrk.c │ ├── stub.h │ ├── write.c │ └── write_hex.c ├── GD32W51x ├── CMSIS │ └── GD │ │ └── GD32W51x │ │ ├── Include │ │ ├── gd32w51x.h │ │ └── system_gd32w51x.h │ │ └── Source │ │ ├── ARM │ │ └── startup_gd32w51x.s │ │ ├── IAR │ │ └── startup_gd32w51x.s │ │ └── system_gd32w51x.c ├── GD32W51x_standard_peripheral │ ├── Include │ │ ├── gd32w51x_adc.h │ │ ├── gd32w51x_cau.h │ │ ├── gd32w51x_crc.h │ │ ├── gd32w51x_dbg.h │ │ ├── gd32w51x_dci.h │ │ ├── gd32w51x_dma.h │ │ ├── gd32w51x_efuse.h │ │ ├── gd32w51x_exti.h │ │ ├── gd32w51x_fmc.h │ │ ├── gd32w51x_fwdgt.h │ │ ├── gd32w51x_gpio.h │ │ ├── gd32w51x_hau.h │ │ ├── gd32w51x_hpdf.h │ │ ├── gd32w51x_i2c.h │ │ ├── gd32w51x_icache.h │ │ ├── gd32w51x_misc.h │ │ ├── gd32w51x_pkcau.h │ │ ├── gd32w51x_pmu.h │ │ ├── gd32w51x_qspi.h │ │ ├── gd32w51x_rcu.h │ │ ├── gd32w51x_rtc.h │ │ ├── gd32w51x_sdio.h │ │ ├── gd32w51x_spi.h │ │ ├── gd32w51x_sqpi.h │ │ ├── gd32w51x_syscfg.h │ │ ├── gd32w51x_timer.h │ │ ├── gd32w51x_trng.h │ │ ├── gd32w51x_tsi.h │ │ ├── gd32w51x_tzpcu.h │ │ ├── gd32w51x_usart.h │ │ └── gd32w51x_wwdgt.h │ └── Source │ │ ├── gd32w51x_adc.c │ │ ├── gd32w51x_cau.c │ │ ├── gd32w51x_cau_aes.c │ │ ├── gd32w51x_cau_des.c │ │ ├── gd32w51x_cau_tdes.c │ │ ├── gd32w51x_crc.c │ │ ├── gd32w51x_dbg.c │ │ ├── gd32w51x_dci.c │ │ ├── gd32w51x_dma.c │ │ ├── gd32w51x_efuse.c │ │ ├── gd32w51x_exti.c │ │ ├── gd32w51x_fmc.c │ │ ├── gd32w51x_fwdgt.c │ │ ├── gd32w51x_gpio.c │ │ ├── gd32w51x_hau.c │ │ ├── gd32w51x_hau_sha_md5.c │ │ ├── gd32w51x_hpdf.c │ │ ├── gd32w51x_i2c.c │ │ ├── gd32w51x_icache.c │ │ ├── gd32w51x_misc.c │ │ ├── gd32w51x_pkcau.c │ │ ├── gd32w51x_pmu.c │ │ ├── gd32w51x_qspi.c │ │ ├── gd32w51x_rcu.c │ │ ├── gd32w51x_rtc.c │ │ ├── gd32w51x_sdio.c │ │ ├── gd32w51x_spi.c │ │ ├── gd32w51x_sqpi.c │ │ ├── gd32w51x_syscfg.c │ │ ├── gd32w51x_timer.c │ │ ├── gd32w51x_trng.c │ │ ├── gd32w51x_tsi.c │ │ ├── gd32w51x_tzpcu.c │ │ ├── gd32w51x_usart.c │ │ └── gd32w51x_wwdgt.c └── GD32W51x_usbfs_library │ ├── device │ ├── class │ │ ├── audio │ │ │ ├── Include │ │ │ │ ├── audio_core.h │ │ │ │ └── audio_out_itf.h │ │ │ └── Source │ │ │ │ ├── audio_core.c │ │ │ │ └── audio_out_itf.c │ │ ├── cdc │ │ │ ├── Include │ │ │ │ └── cdc_acm_core.h │ │ │ └── Source │ │ │ │ └── cdc_acm_core.c │ │ ├── dfu │ │ │ ├── Include │ │ │ │ ├── dfu_core.h │ │ │ │ └── dfu_mal.h │ │ │ └── Source │ │ │ │ ├── dfu_core.c │ │ │ │ └── dfu_mal.c │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── custom_hid_core.h │ │ │ │ └── standard_hid_core.h │ │ │ └── Source │ │ │ │ ├── custom_hid_core.c │ │ │ │ └── standard_hid_core.c │ │ ├── iap │ │ │ ├── Include │ │ │ │ └── usb_iap_core.h │ │ │ └── Source │ │ │ │ └── usb_iap_core.c │ │ ├── msc │ │ │ ├── Include │ │ │ │ ├── usbd_msc_bbb.h │ │ │ │ ├── usbd_msc_core.h │ │ │ │ ├── usbd_msc_data.h │ │ │ │ ├── usbd_msc_mem.h │ │ │ │ └── usbd_msc_scsi.h │ │ │ └── Source │ │ │ │ ├── usbd_msc_bbb.c │ │ │ │ ├── usbd_msc_core.c │ │ │ │ ├── usbd_msc_data.c │ │ │ │ └── usbd_msc_scsi.c │ │ └── printer │ │ │ ├── Include │ │ │ └── printer_core.h │ │ │ └── Source │ │ │ └── printer_core.c │ └── core │ │ ├── Include │ │ ├── usbd_core.h │ │ ├── usbd_enum.h │ │ └── usbd_transc.h │ │ └── Source │ │ ├── usbd_core.c │ │ ├── usbd_enum.c │ │ └── usbd_transc.c │ ├── driver │ ├── Include │ │ ├── drv_usb_core.h │ │ ├── drv_usb_dev.h │ │ ├── drv_usb_host.h │ │ ├── drv_usb_hw.h │ │ ├── drv_usb_regs.h │ │ ├── drv_usbd_int.h │ │ └── drv_usbh_int.h │ └── Source │ │ ├── drv_usb_core.c │ │ ├── drv_usb_dev.c │ │ ├── drv_usb_host.c │ │ ├── drv_usbd_int.c │ │ └── drv_usbh_int.c │ ├── host │ ├── class │ │ ├── hid │ │ │ ├── Include │ │ │ │ ├── usbh_hid_core.h │ │ │ │ ├── usbh_hid_keybd.h │ │ │ │ ├── usbh_hid_mouse.h │ │ │ │ ├── usbh_hid_parser.h │ │ │ │ └── usbh_hid_usage.h │ │ │ └── Source │ │ │ │ ├── usbh_hid_core.c │ │ │ │ ├── usbh_hid_keybd.c │ │ │ │ ├── usbh_hid_mouse.c │ │ │ │ └── usbh_hid_parser.c │ │ └── msc │ │ │ ├── Include │ │ │ ├── usbh_msc_bbb.h │ │ │ ├── usbh_msc_core.h │ │ │ └── usbh_msc_scsi.h │ │ │ └── Source │ │ │ ├── usbh_msc_bbb.c │ │ │ ├── usbh_msc_core.c │ │ │ ├── usbh_msc_fatfs.c │ │ │ └── usbh_msc_scsi.c │ └── core │ │ ├── Include │ │ ├── usbh_core.h │ │ ├── usbh_enum.h │ │ ├── usbh_pipe.h │ │ └── usbh_transc.h │ │ └── Source │ │ ├── usbh_core.c │ │ ├── usbh_enum.c │ │ ├── usbh_pipe.c │ │ └── usbh_transc.c │ └── ustd │ ├── class │ ├── cdc │ │ └── usb_cdc.h │ ├── hid │ │ └── usb_hid.h │ └── msc │ │ ├── msc_bbb.h │ │ ├── msc_scsi.h │ │ └── usb_msc.h │ └── common │ └── usb_ch9_std.h └── README.md /GD32C10x/CMSIS/GD/GD32C10x/Include/gd32c10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/CMSIS/GD/GD32C10x/Include/gd32c10x.h -------------------------------------------------------------------------------- /GD32C10x/CMSIS/GD/GD32C10x/Include/system_gd32c10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/CMSIS/GD/GD32C10x/Include/system_gd32c10x.h -------------------------------------------------------------------------------- /GD32C10x/CMSIS/GD/GD32C10x/Source/ARM/startup_gd32c10x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/CMSIS/GD/GD32C10x/Source/ARM/startup_gd32c10x.s -------------------------------------------------------------------------------- /GD32C10x/CMSIS/GD/GD32C10x/Source/IAR/startup_gd32c10x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/CMSIS/GD/GD32C10x/Source/IAR/startup_gd32c10x.s -------------------------------------------------------------------------------- /GD32C10x/CMSIS/GD/GD32C10x/Source/system_gd32c10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/CMSIS/GD/GD32C10x/Source/system_gd32c10x.c -------------------------------------------------------------------------------- /GD32C10x/CMSIS/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/CMSIS/core_cm4.h -------------------------------------------------------------------------------- /GD32C10x/CMSIS/core_cm4_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/CMSIS/core_cm4_simd.h -------------------------------------------------------------------------------- /GD32C10x/CMSIS/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/CMSIS/core_cmFunc.h -------------------------------------------------------------------------------- /GD32C10x/CMSIS/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/CMSIS/core_cmInstr.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_adc.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_bkp.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_can.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_crc.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_ctc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_ctc.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_dac.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_dbg.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_dma.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_fmc.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_fmc.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_i2c.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_pmu.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_rcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_rcu.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_rtc.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Include/gd32c10x_spi.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_adc.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_bkp.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_can.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_crc.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_ctc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_ctc.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_dac.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_dbg.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_dma.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_exmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_exmc.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_exti.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_fmc.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_gpio.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_i2c.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_misc.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_pmu.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_rcu.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_rtc.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_standard_peripheral/Source/gd32c10x_spi.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/driver/Include/drv_usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/driver/Include/drv_usb_dev.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/driver/Include/drv_usb_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/driver/Include/drv_usb_hw.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/driver/Source/drv_usb_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/driver/Source/drv_usb_core.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/driver/Source/drv_usb_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/driver/Source/drv_usb_dev.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/driver/Source/drv_usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/driver/Source/drv_usb_host.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/driver/Source/drv_usbd_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/driver/Source/drv_usbd_int.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/driver/Source/drv_usbh_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/driver/Source/drv_usbh_int.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/host/core/Source/usbh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/host/core/Source/usbh_core.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/host/core/Source/usbh_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/host/core/Source/usbh_enum.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/host/core/Source/usbh_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/host/core/Source/usbh_pipe.c -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/ustd/class/cdc/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/ustd/class/cdc/usb_cdc.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/ustd/class/hid/usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/ustd/class/hid/usb_hid.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/ustd/class/msc/msc_bbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/ustd/class/msc/msc_bbb.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/ustd/class/msc/msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/ustd/class/msc/msc_scsi.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/ustd/class/msc/usb_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/ustd/class/msc/usb_msc.h -------------------------------------------------------------------------------- /GD32C10x/GD32C10x_usbfs_library/ustd/common/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32C10x/GD32C10x_usbfs_library/ustd/common/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32E10x/CMSIS/GD/GD32E10x/Include/gd32e10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/CMSIS/GD/GD32E10x/Include/gd32e10x.h -------------------------------------------------------------------------------- /GD32E10x/CMSIS/GD/GD32E10x/Include/system_gd32e10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/CMSIS/GD/GD32E10x/Include/system_gd32e10x.h -------------------------------------------------------------------------------- /GD32E10x/CMSIS/GD/GD32E10x/Source/ARM/startup_gd32e10x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/CMSIS/GD/GD32E10x/Source/ARM/startup_gd32e10x.s -------------------------------------------------------------------------------- /GD32E10x/CMSIS/GD/GD32E10x/Source/IAR/startup_gd32e10x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/CMSIS/GD/GD32E10x/Source/IAR/startup_gd32e10x.s -------------------------------------------------------------------------------- /GD32E10x/CMSIS/GD/GD32E10x/Source/system_gd32e10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/CMSIS/GD/GD32E10x/Source/system_gd32e10x.c -------------------------------------------------------------------------------- /GD32E10x/CMSIS/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/CMSIS/core_cm4.h -------------------------------------------------------------------------------- /GD32E10x/CMSIS/core_cm4_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/CMSIS/core_cm4_simd.h -------------------------------------------------------------------------------- /GD32E10x/CMSIS/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/CMSIS/core_cmFunc.h -------------------------------------------------------------------------------- /GD32E10x/CMSIS/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/CMSIS/core_cmInstr.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_adc.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_bkp.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_crc.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_ctc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_ctc.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_dac.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_dbg.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_dma.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_fmc.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_fmc.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_i2c.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_pmu.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_rcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_rcu.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_rtc.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Include/gd32e10x_spi.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_adc.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_bkp.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_crc.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_ctc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_ctc.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_dac.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_dbg.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_dma.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_exmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_exmc.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_exti.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_fmc.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_gpio.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_i2c.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_misc.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_pmu.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_rcu.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_rtc.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_standard_peripheral/Source/gd32e10x_spi.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/driver/Include/drv_usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/driver/Include/drv_usb_dev.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/driver/Include/drv_usb_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/driver/Include/drv_usb_hw.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/driver/Source/drv_usb_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/driver/Source/drv_usb_core.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/driver/Source/drv_usb_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/driver/Source/drv_usb_dev.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/driver/Source/drv_usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/driver/Source/drv_usb_host.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/driver/Source/drv_usbd_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/driver/Source/drv_usbd_int.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/driver/Source/drv_usbh_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/driver/Source/drv_usbh_int.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/host/core/Source/usbh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/host/core/Source/usbh_core.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/host/core/Source/usbh_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/host/core/Source/usbh_enum.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/host/core/Source/usbh_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/host/core/Source/usbh_pipe.c -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/ustd/class/cdc/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/ustd/class/cdc/usb_cdc.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/ustd/class/hid/usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/ustd/class/hid/usb_hid.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/ustd/class/msc/msc_bbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/ustd/class/msc/msc_bbb.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/ustd/class/msc/msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/ustd/class/msc/msc_scsi.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/ustd/class/msc/usb_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/ustd/class/msc/usb_msc.h -------------------------------------------------------------------------------- /GD32E10x/GD32E10x_usbfs_library/ustd/common/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E10x/GD32E10x_usbfs_library/ustd/common/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32E23x/CMSIS/GD/GD32E23x/Include/gd32e23x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/CMSIS/GD/GD32E23x/Include/gd32e23x.h -------------------------------------------------------------------------------- /GD32E23x/CMSIS/GD/GD32E23x/Include/system_gd32e23x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/CMSIS/GD/GD32E23x/Include/system_gd32e23x.h -------------------------------------------------------------------------------- /GD32E23x/CMSIS/GD/GD32E23x/Source/ARM/startup_gd32e23x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/CMSIS/GD/GD32E23x/Source/ARM/startup_gd32e23x.s -------------------------------------------------------------------------------- /GD32E23x/CMSIS/GD/GD32E23x/Source/IAR/startup_gd32e23x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/CMSIS/GD/GD32E23x/Source/IAR/startup_gd32e23x.s -------------------------------------------------------------------------------- /GD32E23x/CMSIS/GD/GD32E23x/Source/system_gd32e23x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/CMSIS/GD/GD32E23x/Source/system_gd32e23x.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_adc.h -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_cmp.h -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_crc.h -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_dbg.h -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_dma.h -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_fmc.h -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_i2c.h -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_pmu.h -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_rcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_rcu.h -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_rtc.h -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Include/gd32e23x_spi.h -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_adc.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_cmp.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_crc.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_dbg.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_dma.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_exti.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_fmc.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_gpio.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_i2c.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_misc.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_pmu.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_rcu.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_rtc.c -------------------------------------------------------------------------------- /GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E23x/GD32E23x_standard_peripheral/Source/gd32e23x_spi.c -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Include/gd32e50x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Include/gd32e50x.h -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Include/system_gd32e50x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Include/system_gd32e50x.h -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Source/ARM/startup_gd32e508.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Source/ARM/startup_gd32e508.s -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Source/ARM/startup_gd32e50x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Source/ARM/startup_gd32e50x_cl.s -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Source/ARM/startup_gd32e50x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Source/ARM/startup_gd32e50x_hd.s -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Source/ARM/startup_gd32e50x_xd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Source/ARM/startup_gd32e50x_xd.s -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Source/ARM/startup_gd32eprt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Source/ARM/startup_gd32eprt.s -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Source/IAR/startup_gd32e508.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Source/IAR/startup_gd32e508.s -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Source/IAR/startup_gd32e50x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Source/IAR/startup_gd32e50x_cl.s -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Source/IAR/startup_gd32e50x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Source/IAR/startup_gd32e50x_hd.s -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Source/IAR/startup_gd32e50x_xd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Source/IAR/startup_gd32e50x_xd.s -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Source/IAR/startup_gd32eprt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Source/IAR/startup_gd32eprt.s -------------------------------------------------------------------------------- /GD32E50x/CMSIS/GD/GD32E50x/Source/system_gd32e50x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/GD/GD32E50x/Source/system_gd32e50x.c -------------------------------------------------------------------------------- /GD32E50x/CMSIS/cmsis_armcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/cmsis_armcc.h -------------------------------------------------------------------------------- /GD32E50x/CMSIS/cmsis_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/cmsis_compiler.h -------------------------------------------------------------------------------- /GD32E50x/CMSIS/cmsis_iccarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/cmsis_iccarm.h -------------------------------------------------------------------------------- /GD32E50x/CMSIS/cmsis_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/cmsis_version.h -------------------------------------------------------------------------------- /GD32E50x/CMSIS/core_cm33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/CMSIS/core_cm33.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_adc.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_bkp.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_can.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_cmp.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_crc.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_ctc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_ctc.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_dac.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_dbg.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_dma.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_fmc.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_i2c.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_pmu.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_rcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_rcu.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_rtc.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_spi.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_tmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Include/gd32e50x_tmu.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_adc.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_bkp.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_can.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_cmp.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_crc.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_ctc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_ctc.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_dac.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_dbg.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_dma.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_enet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_enet.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_exmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_exmc.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_exti.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_fmc.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_gpio.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_i2c.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_misc.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_pmu.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_rcu.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_rtc.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_sdio.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_spi.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_sqpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_sqpi.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_tmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_standard_peripheral/Source/gd32e50x_tmu.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/device/Include/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/device/Include/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/device/Include/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/device/Include/usbd_core.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/device/Include/usbd_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/device/Include/usbd_enum.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/device/Include/usbd_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/device/Include/usbd_pwr.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/device/Include/usbd_transc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/device/Include/usbd_transc.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/device/Source/usbd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/device/Source/usbd_core.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/device/Source/usbd_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/device/Source/usbd_enum.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/device/Source/usbd_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/device/Source/usbd_pwr.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/device/Source/usbd_transc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/device/Source/usbd_transc.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/usbd/Include/usbd_lld_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/usbd/Include/usbd_lld_core.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/usbd/Include/usbd_lld_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/usbd/Include/usbd_lld_int.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/usbd/Include/usbd_lld_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/usbd/Include/usbd_lld_regs.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/usbd/Source/usbd_lld_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/usbd/Source/usbd_lld_core.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbd_library/usbd/Source/usbd_lld_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbd_library/usbd/Source/usbd_lld_int.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/driver/Include/drv_usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/driver/Include/drv_usb_dev.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/driver/Include/drv_usb_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/driver/Include/drv_usb_hw.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/driver/Source/drv_usb_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/driver/Source/drv_usb_core.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/driver/Source/drv_usb_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/driver/Source/drv_usb_dev.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/driver/Source/drv_usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/driver/Source/drv_usb_host.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/driver/Source/drv_usbd_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/driver/Source/drv_usbd_int.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/driver/Source/drv_usbh_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/driver/Source/drv_usbh_int.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/host/core/Source/usbh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/host/core/Source/usbh_core.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/host/core/Source/usbh_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/host/core/Source/usbh_enum.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/host/core/Source/usbh_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/host/core/Source/usbh_pipe.c -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/ustd/class/cdc/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/ustd/class/cdc/usb_cdc.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/ustd/class/hid/usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/ustd/class/hid/usb_hid.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/ustd/class/msc/msc_bbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/ustd/class/msc/msc_bbb.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/ustd/class/msc/msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/ustd/class/msc/msc_scsi.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/ustd/class/msc/usb_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/ustd/class/msc/usb_msc.h -------------------------------------------------------------------------------- /GD32E50x/GD32E50x_usbhs_library/ustd/common/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32E50x/GD32E50x_usbhs_library/ustd/common/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32F10x/CMSIS/GD/GD32F10x/Include/gd32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/GD/GD32F10x/Include/gd32f10x.h -------------------------------------------------------------------------------- /GD32F10x/CMSIS/GD/GD32F10x/Include/system_gd32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/GD/GD32F10x/Include/system_gd32f10x.h -------------------------------------------------------------------------------- /GD32F10x/CMSIS/GD/GD32F10x/Source/ARM/startup_gd32f10x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/GD/GD32F10x/Source/ARM/startup_gd32f10x_cl.s -------------------------------------------------------------------------------- /GD32F10x/CMSIS/GD/GD32F10x/Source/ARM/startup_gd32f10x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/GD/GD32F10x/Source/ARM/startup_gd32f10x_hd.s -------------------------------------------------------------------------------- /GD32F10x/CMSIS/GD/GD32F10x/Source/ARM/startup_gd32f10x_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/GD/GD32F10x/Source/ARM/startup_gd32f10x_md.s -------------------------------------------------------------------------------- /GD32F10x/CMSIS/GD/GD32F10x/Source/ARM/startup_gd32f10x_xd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/GD/GD32F10x/Source/ARM/startup_gd32f10x_xd.s -------------------------------------------------------------------------------- /GD32F10x/CMSIS/GD/GD32F10x/Source/IAR/startup_gd32f10x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/GD/GD32F10x/Source/IAR/startup_gd32f10x_cl.s -------------------------------------------------------------------------------- /GD32F10x/CMSIS/GD/GD32F10x/Source/IAR/startup_gd32f10x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/GD/GD32F10x/Source/IAR/startup_gd32f10x_hd.s -------------------------------------------------------------------------------- /GD32F10x/CMSIS/GD/GD32F10x/Source/IAR/startup_gd32f10x_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/GD/GD32F10x/Source/IAR/startup_gd32f10x_md.s -------------------------------------------------------------------------------- /GD32F10x/CMSIS/GD/GD32F10x/Source/IAR/startup_gd32f10x_xd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/GD/GD32F10x/Source/IAR/startup_gd32f10x_xd.s -------------------------------------------------------------------------------- /GD32F10x/CMSIS/GD/GD32F10x/Source/system_gd32f10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/GD/GD32F10x/Source/system_gd32f10x.c -------------------------------------------------------------------------------- /GD32F10x/CMSIS/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/core_cm3.h -------------------------------------------------------------------------------- /GD32F10x/CMSIS/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/core_cmFunc.h -------------------------------------------------------------------------------- /GD32F10x/CMSIS/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/CMSIS/core_cmInstr.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_adc.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_bkp.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_can.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_crc.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_dac.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_dbg.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_dma.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_fmc.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_i2c.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_pmu.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_rcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_rcu.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_rtc.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Include/gd32f10x_spi.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_adc.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_bkp.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_can.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_crc.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_dac.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_dbg.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_dma.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_enet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_enet.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_exmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_exmc.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_exti.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_fmc.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_gpio.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_i2c.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_misc.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_pmu.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_rcu.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_rtc.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_sdio.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_standard_peripheral/Source/gd32f10x_spi.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/device/Include/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/device/Include/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/device/Include/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/device/Include/usbd_core.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/device/Include/usbd_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/device/Include/usbd_enum.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/device/Include/usbd_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/device/Include/usbd_pwr.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/device/Include/usbd_transc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/device/Include/usbd_transc.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/device/Source/usbd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/device/Source/usbd_core.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/device/Source/usbd_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/device/Source/usbd_enum.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/device/Source/usbd_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/device/Source/usbd_pwr.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/device/Source/usbd_transc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/device/Source/usbd_transc.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/usbd/Include/usbd_lld_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/usbd/Include/usbd_lld_core.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/usbd/Include/usbd_lld_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/usbd/Include/usbd_lld_int.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/usbd/Include/usbd_lld_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/usbd/Include/usbd_lld_regs.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/usbd/Source/usbd_lld_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/usbd/Source/usbd_lld_core.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbd_library/usbd/Source/usbd_lld_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbd_library/usbd/Source/usbd_lld_int.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/driver/Include/drv_usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/driver/Include/drv_usb_dev.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/driver/Include/drv_usb_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/driver/Include/drv_usb_hw.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/driver/Source/drv_usb_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/driver/Source/drv_usb_core.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/driver/Source/drv_usb_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/driver/Source/drv_usb_dev.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/driver/Source/drv_usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/driver/Source/drv_usb_host.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/driver/Source/drv_usbd_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/driver/Source/drv_usbd_int.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/driver/Source/drv_usbh_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/driver/Source/drv_usbh_int.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/host/core/Source/usbh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/host/core/Source/usbh_core.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/host/core/Source/usbh_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/host/core/Source/usbh_enum.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/host/core/Source/usbh_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/host/core/Source/usbh_pipe.c -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/ustd/class/cdc/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/ustd/class/cdc/usb_cdc.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/ustd/class/hid/usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/ustd/class/hid/usb_hid.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/ustd/class/msc/msc_bbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/ustd/class/msc/msc_bbb.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/ustd/class/msc/msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/ustd/class/msc/msc_scsi.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/ustd/class/msc/usb_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/ustd/class/msc/usb_msc.h -------------------------------------------------------------------------------- /GD32F10x/GD32F10x_usbfs_library/ustd/common/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F10x/GD32F10x_usbfs_library/ustd/common/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32F1x0/CMSIS/GD/GD32F1x0/Include/gd32f1x0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/CMSIS/GD/GD32F1x0/Include/gd32f1x0.h -------------------------------------------------------------------------------- /GD32F1x0/CMSIS/GD/GD32F1x0/Include/system_gd32f1x0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/CMSIS/GD/GD32F1x0/Include/system_gd32f1x0.h -------------------------------------------------------------------------------- /GD32F1x0/CMSIS/GD/GD32F1x0/Source/ARM/startup_gd32f1x0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/CMSIS/GD/GD32F1x0/Source/ARM/startup_gd32f1x0.s -------------------------------------------------------------------------------- /GD32F1x0/CMSIS/GD/GD32F1x0/Source/IAR/startup_gd32f1x0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/CMSIS/GD/GD32F1x0/Source/IAR/startup_gd32f1x0.s -------------------------------------------------------------------------------- /GD32F1x0/CMSIS/GD/GD32F1x0/Source/system_gd32f1x0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/CMSIS/GD/GD32F1x0/Source/system_gd32f1x0.c -------------------------------------------------------------------------------- /GD32F1x0/CMSIS/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/CMSIS/core_cm3.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_adc.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_can.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_cec.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_cmp.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_crc.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_dac.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_dbg.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_dma.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_fmc.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_i2c.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_opa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_opa.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_pmu.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_rcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_rcu.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_rtc.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_spi.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_tsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Include/gd32f1x0_tsi.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_adc.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_can.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_cec.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_cmp.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_crc.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_dac.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_dbg.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_dma.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_exti.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_fmc.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_gpio.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_i2c.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_misc.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_opa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_opa.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_pmu.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_rcu.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_rtc.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_slcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_slcd.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_spi.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_tsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_standard_peripheral/Source/gd32f1x0_tsi.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/device/Include/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/device/Include/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/device/Include/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/device/Include/usbd_core.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/device/Include/usbd_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/device/Include/usbd_enum.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/device/Include/usbd_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/device/Include/usbd_pwr.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/device/Include/usbd_transc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/device/Include/usbd_transc.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/device/Source/usbd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/device/Source/usbd_core.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/device/Source/usbd_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/device/Source/usbd_enum.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/device/Source/usbd_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/device/Source/usbd_pwr.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/device/Source/usbd_transc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/device/Source/usbd_transc.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/usbd/Include/usbd_lld_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/usbd/Include/usbd_lld_core.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/usbd/Include/usbd_lld_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/usbd/Include/usbd_lld_int.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/usbd/Include/usbd_lld_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/usbd/Include/usbd_lld_regs.h -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/usbd/Source/usbd_lld_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/usbd/Source/usbd_lld_core.c -------------------------------------------------------------------------------- /GD32F1x0/GD32F1x0_usbd_library/usbd/Source/usbd_lld_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F1x0/GD32F1x0_usbd_library/usbd/Source/usbd_lld_int.c -------------------------------------------------------------------------------- /GD32F20x/CMSIS/GD/GD32F20x/Include/gd32f20x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/CMSIS/GD/GD32F20x/Include/gd32f20x.h -------------------------------------------------------------------------------- /GD32F20x/CMSIS/GD/GD32F20x/Include/system_gd32f20x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/CMSIS/GD/GD32F20x/Include/system_gd32f20x.h -------------------------------------------------------------------------------- /GD32F20x/CMSIS/GD/GD32F20x/Source/ARM/startup_gd32f20x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/CMSIS/GD/GD32F20x/Source/ARM/startup_gd32f20x_cl.s -------------------------------------------------------------------------------- /GD32F20x/CMSIS/GD/GD32F20x/Source/IAR/startup_gd32f20x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/CMSIS/GD/GD32F20x/Source/IAR/startup_gd32f20x_cl.s -------------------------------------------------------------------------------- /GD32F20x/CMSIS/GD/GD32F20x/Source/system_gd32f20x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/CMSIS/GD/GD32F20x/Source/system_gd32f20x.c -------------------------------------------------------------------------------- /GD32F20x/CMSIS/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/CMSIS/core_cm3.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_adc.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_bkp.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_can.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_cau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_cau.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_crc.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_dac.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_dbg.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_dci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_dci.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_dma.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_fmc.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_hau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_hau.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_i2c.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_pmu.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_rcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_rcu.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_rtc.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_spi.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_tli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Include/gd32f20x_tli.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_adc.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_bkp.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_can.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_cau.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_cau.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_crc.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_dac.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_dbg.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_dci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_dci.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_dma.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_enet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_enet.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_exmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_exmc.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_exti.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_fmc.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_gpio.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_hau.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_hau.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_i2c.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_misc.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_pmu.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_rcu.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_rtc.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_sdio.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_spi.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_tli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_tli.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_trng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_standard_peripheral/Source/gd32f20x_trng.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Include/usb_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Include/usb_core.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Include/usb_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Include/usb_defines.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Include/usb_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Include/usb_regs.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Include/usb_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Include/usb_std.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Include/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Include/usbd_core.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Include/usbd_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Include/usbd_int.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Include/usbd_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Include/usbd_std.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Include/usbh_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Include/usbh_core.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Include/usbh_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Include/usbh_ctrl.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Include/usbh_hcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Include/usbh_hcs.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Include/usbh_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Include/usbh_int.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Include/usbh_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Include/usbh_std.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Source/usb_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Source/usb_core.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Source/usbd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Source/usbd_core.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Source/usbd_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Source/usbd_int.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Source/usbd_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Source/usbd_std.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Source/usbh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Source/usbh_core.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Source/usbh_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Source/usbh_ctrl.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Source/usbh_hcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Source/usbh_hcs.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Source/usbh_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Source/usbh_int.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_driver/Source/usbh_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_driver/Source/usbh_std.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/driver/Include/drv_usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/driver/Include/drv_usb_dev.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/driver/Include/drv_usb_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/driver/Include/drv_usb_hw.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/driver/Source/drv_usb_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/driver/Source/drv_usb_core.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/driver/Source/drv_usb_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/driver/Source/drv_usb_dev.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/driver/Source/drv_usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/driver/Source/drv_usb_host.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/driver/Source/drv_usbd_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/driver/Source/drv_usbd_int.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/driver/Source/drv_usbh_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/driver/Source/drv_usbh_int.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/host/core/Source/usbh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/host/core/Source/usbh_core.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/host/core/Source/usbh_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/host/core/Source/usbh_enum.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/host/core/Source/usbh_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/host/core/Source/usbh_pipe.c -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/ustd/class/cdc/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/ustd/class/cdc/usb_cdc.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/ustd/class/hid/usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/ustd/class/hid/usb_hid.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/ustd/class/msc/msc_bbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/ustd/class/msc/msc_bbb.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/ustd/class/msc/msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/ustd/class/msc/msc_scsi.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/ustd/class/msc/usb_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/ustd/class/msc/usb_msc.h -------------------------------------------------------------------------------- /GD32F20x/GD32F20x_usbfs_library/ustd/common/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F20x/GD32F20x_usbfs_library/ustd/common/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32F30x/CMSIS/GD/GD32F30x/Include/gd32f30x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/GD/GD32F30x/Include/gd32f30x.h -------------------------------------------------------------------------------- /GD32F30x/CMSIS/GD/GD32F30x/Include/system_gd32f30x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/GD/GD32F30x/Include/system_gd32f30x.h -------------------------------------------------------------------------------- /GD32F30x/CMSIS/GD/GD32F30x/Source/ARM/startup_gd32f30x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/GD/GD32F30x/Source/ARM/startup_gd32f30x_cl.s -------------------------------------------------------------------------------- /GD32F30x/CMSIS/GD/GD32F30x/Source/ARM/startup_gd32f30x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/GD/GD32F30x/Source/ARM/startup_gd32f30x_hd.s -------------------------------------------------------------------------------- /GD32F30x/CMSIS/GD/GD32F30x/Source/ARM/startup_gd32f30x_xd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/GD/GD32F30x/Source/ARM/startup_gd32f30x_xd.s -------------------------------------------------------------------------------- /GD32F30x/CMSIS/GD/GD32F30x/Source/IAR/startup_gd32f30x_cl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/GD/GD32F30x/Source/IAR/startup_gd32f30x_cl.s -------------------------------------------------------------------------------- /GD32F30x/CMSIS/GD/GD32F30x/Source/IAR/startup_gd32f30x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/GD/GD32F30x/Source/IAR/startup_gd32f30x_hd.s -------------------------------------------------------------------------------- /GD32F30x/CMSIS/GD/GD32F30x/Source/IAR/startup_gd32f30x_xd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/GD/GD32F30x/Source/IAR/startup_gd32f30x_xd.s -------------------------------------------------------------------------------- /GD32F30x/CMSIS/GD/GD32F30x/Source/system_gd32f30x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/GD/GD32F30x/Source/system_gd32f30x.c -------------------------------------------------------------------------------- /GD32F30x/CMSIS/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/core_cm4.h -------------------------------------------------------------------------------- /GD32F30x/CMSIS/core_cm4_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/core_cm4_simd.h -------------------------------------------------------------------------------- /GD32F30x/CMSIS/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/core_cmFunc.h -------------------------------------------------------------------------------- /GD32F30x/CMSIS/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/CMSIS/core_cmInstr.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_adc.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_bkp.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_can.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_crc.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_ctc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_ctc.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_dac.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_dbg.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_dma.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_fmc.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_i2c.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_pmu.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_rcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_rcu.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_rtc.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Include/gd32f30x_spi.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_adc.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_bkp.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_can.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_crc.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_ctc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_ctc.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_dac.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_dbg.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_dma.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_enet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_enet.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_exmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_exmc.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_exti.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_fmc.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_gpio.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_i2c.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_misc.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_pmu.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_rcu.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_rtc.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_sdio.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_standard_peripheral/Source/gd32f30x_spi.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/device/Include/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/device/Include/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/device/Include/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/device/Include/usbd_core.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/device/Include/usbd_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/device/Include/usbd_enum.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/device/Include/usbd_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/device/Include/usbd_pwr.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/device/Include/usbd_transc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/device/Include/usbd_transc.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/device/Source/usbd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/device/Source/usbd_core.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/device/Source/usbd_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/device/Source/usbd_enum.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/device/Source/usbd_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/device/Source/usbd_pwr.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/device/Source/usbd_transc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/device/Source/usbd_transc.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/usbd/Include/usbd_lld_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/usbd/Include/usbd_lld_core.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/usbd/Include/usbd_lld_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/usbd/Include/usbd_lld_int.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/usbd/Include/usbd_lld_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/usbd/Include/usbd_lld_regs.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/usbd/Source/usbd_lld_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/usbd/Source/usbd_lld_core.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbd_library/usbd/Source/usbd_lld_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbd_library/usbd/Source/usbd_lld_int.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/driver/Include/drv_usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/driver/Include/drv_usb_dev.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/driver/Include/drv_usb_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/driver/Include/drv_usb_hw.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/driver/Source/drv_usb_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/driver/Source/drv_usb_core.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/driver/Source/drv_usb_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/driver/Source/drv_usb_dev.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/driver/Source/drv_usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/driver/Source/drv_usb_host.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/driver/Source/drv_usbd_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/driver/Source/drv_usbd_int.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/driver/Source/drv_usbh_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/driver/Source/drv_usbh_int.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/host/core/Source/usbh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/host/core/Source/usbh_core.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/host/core/Source/usbh_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/host/core/Source/usbh_enum.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/host/core/Source/usbh_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/host/core/Source/usbh_pipe.c -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/ustd/class/cdc/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/ustd/class/cdc/usb_cdc.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/ustd/class/hid/usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/ustd/class/hid/usb_hid.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/ustd/class/msc/msc_bbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/ustd/class/msc/msc_bbb.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/ustd/class/msc/msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/ustd/class/msc/msc_scsi.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/ustd/class/msc/usb_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/ustd/class/msc/usb_msc.h -------------------------------------------------------------------------------- /GD32F30x/GD32F30x_usbfs_library/ustd/common/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F30x/GD32F30x_usbfs_library/ustd/common/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32F3x0/CMSIS/GD/GD32F3x0/Include/gd32f3x0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/CMSIS/GD/GD32F3x0/Include/gd32f3x0.h -------------------------------------------------------------------------------- /GD32F3x0/CMSIS/GD/GD32F3x0/Include/system_gd32f3x0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/CMSIS/GD/GD32F3x0/Include/system_gd32f3x0.h -------------------------------------------------------------------------------- /GD32F3x0/CMSIS/GD/GD32F3x0/Source/ARM/startup_gd32f3x0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/CMSIS/GD/GD32F3x0/Source/ARM/startup_gd32f3x0.s -------------------------------------------------------------------------------- /GD32F3x0/CMSIS/GD/GD32F3x0/Source/IAR/startup_gd32f3x0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/CMSIS/GD/GD32F3x0/Source/IAR/startup_gd32f3x0.s -------------------------------------------------------------------------------- /GD32F3x0/CMSIS/GD/GD32F3x0/Source/system_gd32f3x0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/CMSIS/GD/GD32F3x0/Source/system_gd32f3x0.c -------------------------------------------------------------------------------- /GD32F3x0/CMSIS/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/CMSIS/core_cm4.h -------------------------------------------------------------------------------- /GD32F3x0/CMSIS/core_cm4_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/CMSIS/core_cm4_simd.h -------------------------------------------------------------------------------- /GD32F3x0/CMSIS/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/CMSIS/core_cmFunc.h -------------------------------------------------------------------------------- /GD32F3x0/CMSIS/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/CMSIS/core_cmInstr.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_adc.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_cec.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_cmp.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_crc.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_ctc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_ctc.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_dac.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_dbg.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_dma.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_fmc.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_i2c.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_pmu.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_rcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_rcu.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_rtc.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_spi.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_tsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Include/gd32f3x0_tsi.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_adc.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_cec.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_cmp.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_crc.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_ctc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_ctc.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_dac.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_dbg.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_dma.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_exti.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_fmc.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_gpio.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_i2c.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_misc.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_pmu.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_rcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_rcu.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_rtc.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_spi.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_tsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_standard_peripheral/Source/gd32f3x0_tsi.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/driver/Include/drv_usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/driver/Include/drv_usb_dev.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/driver/Include/drv_usb_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/driver/Include/drv_usb_hw.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/driver/Source/drv_usb_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/driver/Source/drv_usb_core.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/driver/Source/drv_usb_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/driver/Source/drv_usb_dev.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/driver/Source/drv_usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/driver/Source/drv_usb_host.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/driver/Source/drv_usbd_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/driver/Source/drv_usbd_int.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/driver/Source/drv_usbh_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/driver/Source/drv_usbh_int.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/host/core/Source/usbh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/host/core/Source/usbh_core.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/host/core/Source/usbh_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/host/core/Source/usbh_enum.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/host/core/Source/usbh_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/host/core/Source/usbh_pipe.c -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/ustd/class/cdc/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/ustd/class/cdc/usb_cdc.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/ustd/class/hid/usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/ustd/class/hid/usb_hid.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/ustd/class/msc/msc_bbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/ustd/class/msc/msc_bbb.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/ustd/class/msc/msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/ustd/class/msc/msc_scsi.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/ustd/class/msc/usb_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/ustd/class/msc/usb_msc.h -------------------------------------------------------------------------------- /GD32F3x0/GD32F3x0_usbfs_library/ustd/common/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F3x0/GD32F3x0_usbfs_library/ustd/common/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32F403/CMSIS/GD/GD32F403/Include/gd32f403.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/CMSIS/GD/GD32F403/Include/gd32f403.h -------------------------------------------------------------------------------- /GD32F403/CMSIS/GD/GD32F403/Include/system_gd32f403.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/CMSIS/GD/GD32F403/Include/system_gd32f403.h -------------------------------------------------------------------------------- /GD32F403/CMSIS/GD/GD32F403/Source/ARM/startup_gd32f403.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/CMSIS/GD/GD32F403/Source/ARM/startup_gd32f403.s -------------------------------------------------------------------------------- /GD32F403/CMSIS/GD/GD32F403/Source/IAR/startup_gd32f403.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/CMSIS/GD/GD32F403/Source/IAR/startup_gd32f403.s -------------------------------------------------------------------------------- /GD32F403/CMSIS/GD/GD32F403/Source/system_gd32f403.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/CMSIS/GD/GD32F403/Source/system_gd32f403.c -------------------------------------------------------------------------------- /GD32F403/CMSIS/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/CMSIS/core_cm4.h -------------------------------------------------------------------------------- /GD32F403/CMSIS/core_cm4_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/CMSIS/core_cm4_simd.h -------------------------------------------------------------------------------- /GD32F403/CMSIS/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/CMSIS/core_cmFunc.h -------------------------------------------------------------------------------- /GD32F403/CMSIS/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/CMSIS/core_cmInstr.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_adc.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_bkp.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_can.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_crc.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_ctc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_ctc.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_dac.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_dbg.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_dma.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_fmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_fmc.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_i2c.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_pmu.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_rcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_rcu.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_rtc.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Include/gd32f403_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Include/gd32f403_spi.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_adc.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_bkp.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_can.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_crc.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_ctc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_ctc.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_dac.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_dbg.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_dma.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_exmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_exmc.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_exti.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_fmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_fmc.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_gpio.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_standard_peripheral/Source/gd32f403_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_standard_peripheral/Source/gd32f403_i2c.c -------------------------------------------------------------------------------- /GD32F403/GD32F403_usbfs_library/ustd/class/cdc/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_usbfs_library/ustd/class/cdc/usb_cdc.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_usbfs_library/ustd/class/hid/usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_usbfs_library/ustd/class/hid/usb_hid.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_usbfs_library/ustd/class/msc/msc_bbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_usbfs_library/ustd/class/msc/msc_bbb.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_usbfs_library/ustd/class/msc/msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_usbfs_library/ustd/class/msc/msc_scsi.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_usbfs_library/ustd/class/msc/usb_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_usbfs_library/ustd/class/msc/usb_msc.h -------------------------------------------------------------------------------- /GD32F403/GD32F403_usbfs_library/ustd/common/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F403/GD32F403_usbfs_library/ustd/common/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32F4xx/CMSIS/GD/GD32F4xx/Include/gd32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/CMSIS/GD/GD32F4xx/Include/gd32f4xx.h -------------------------------------------------------------------------------- /GD32F4xx/CMSIS/GD/GD32F4xx/Include/system_gd32f4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/CMSIS/GD/GD32F4xx/Include/system_gd32f4xx.h -------------------------------------------------------------------------------- /GD32F4xx/CMSIS/GD/GD32F4xx/Source/system_gd32f4xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/CMSIS/GD/GD32F4xx/Source/system_gd32f4xx.c -------------------------------------------------------------------------------- /GD32F4xx/CMSIS/core_cm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/CMSIS/core_cm4.h -------------------------------------------------------------------------------- /GD32F4xx/CMSIS/core_cm4_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/CMSIS/core_cm4_simd.h -------------------------------------------------------------------------------- /GD32F4xx/CMSIS/core_cmFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/CMSIS/core_cmFunc.h -------------------------------------------------------------------------------- /GD32F4xx/CMSIS/core_cmInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/CMSIS/core_cmInstr.h -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/driver/Include/drv_usb_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/driver/Include/drv_usb_dev.h -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/driver/Include/drv_usb_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/driver/Include/drv_usb_hw.h -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/driver/Source/drv_usb_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/driver/Source/drv_usb_core.c -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/driver/Source/drv_usb_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/driver/Source/drv_usb_dev.c -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/driver/Source/drv_usb_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/driver/Source/drv_usb_host.c -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/driver/Source/drv_usbd_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/driver/Source/drv_usbd_int.c -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/driver/Source/drv_usbh_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/driver/Source/drv_usbh_int.c -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/host/core/Source/usbh_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/host/core/Source/usbh_core.c -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/host/core/Source/usbh_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/host/core/Source/usbh_enum.c -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/host/core/Source/usbh_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/host/core/Source/usbh_pipe.c -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/ustd/class/cdc/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/ustd/class/cdc/usb_cdc.h -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/ustd/class/hid/usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/ustd/class/hid/usb_hid.h -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/ustd/class/msc/msc_bbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/ustd/class/msc/msc_bbb.h -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/ustd/class/msc/msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/ustd/class/msc/msc_scsi.h -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/ustd/class/msc/usb_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/ustd/class/msc/usb_msc.h -------------------------------------------------------------------------------- /GD32F4xx/GD32F4xx_usb_library/ustd/common/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32F4xx/GD32F4xx_usb_library/ustd/common/usb_ch9_std.h -------------------------------------------------------------------------------- /GD32L23x/CMSIS/GD/GD32L23x/Include/gd32l23x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/CMSIS/GD/GD32L23x/Include/gd32l23x.h -------------------------------------------------------------------------------- /GD32L23x/CMSIS/GD/GD32L23x/Include/system_gd32l23x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/CMSIS/GD/GD32L23x/Include/system_gd32l23x.h -------------------------------------------------------------------------------- /GD32L23x/CMSIS/GD/GD32L23x/Source/ARM/startup_gd32l23x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/CMSIS/GD/GD32L23x/Source/ARM/startup_gd32l23x.s -------------------------------------------------------------------------------- /GD32L23x/CMSIS/GD/GD32L23x/Source/IAR/startup_gd32l23x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/CMSIS/GD/GD32L23x/Source/IAR/startup_gd32l23x.s -------------------------------------------------------------------------------- /GD32L23x/CMSIS/GD/GD32L23x/Source/system_gd32l23x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/CMSIS/GD/GD32L23x/Source/system_gd32l23x.c -------------------------------------------------------------------------------- /GD32L23x/GD32L23x_usbd_library/device/Include/usbd_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/GD32L23x_usbd_library/device/Include/usbd_core.h -------------------------------------------------------------------------------- /GD32L23x/GD32L23x_usbd_library/device/Include/usbd_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/GD32L23x_usbd_library/device/Include/usbd_enum.h -------------------------------------------------------------------------------- /GD32L23x/GD32L23x_usbd_library/device/Include/usbd_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/GD32L23x_usbd_library/device/Include/usbd_pwr.h -------------------------------------------------------------------------------- /GD32L23x/GD32L23x_usbd_library/device/Source/usbd_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/GD32L23x_usbd_library/device/Source/usbd_core.c -------------------------------------------------------------------------------- /GD32L23x/GD32L23x_usbd_library/device/Source/usbd_enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/GD32L23x_usbd_library/device/Source/usbd_enum.c -------------------------------------------------------------------------------- /GD32L23x/GD32L23x_usbd_library/device/Source/usbd_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/GD32L23x_usbd_library/device/Source/usbd_pwr.c -------------------------------------------------------------------------------- /GD32L23x/GD32L23x_usbd_library/device/Source/usbd_transc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/GD32L23x_usbd_library/device/Source/usbd_transc.c -------------------------------------------------------------------------------- /GD32L23x/GD32L23x_usbd_library/usbd/Include/usbd_lld_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/GD32L23x_usbd_library/usbd/Include/usbd_lld_int.h -------------------------------------------------------------------------------- /GD32L23x/GD32L23x_usbd_library/usbd/Source/usbd_lld_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/GD32L23x_usbd_library/usbd/Source/usbd_lld_core.c -------------------------------------------------------------------------------- /GD32L23x/GD32L23x_usbd_library/usbd/Source/usbd_lld_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32L23x/GD32L23x_usbd_library/usbd/Source/usbd_lld_int.c -------------------------------------------------------------------------------- /GD32VF10x/GD32VF103_standard_peripheral/gd32vf103.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/GD32VF103_standard_peripheral/gd32vf103.h -------------------------------------------------------------------------------- /GD32VF10x/GD32VF103_standard_peripheral/system_gd32vf103.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/GD32VF103_standard_peripheral/system_gd32vf103.c -------------------------------------------------------------------------------- /GD32VF10x/GD32VF103_standard_peripheral/system_gd32vf103.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/GD32VF103_standard_peripheral/system_gd32vf103.h -------------------------------------------------------------------------------- /GD32VF10x/GD32VF103_usbfs_library/ustd/class/cdc/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/GD32VF103_usbfs_library/ustd/class/cdc/usb_cdc.h -------------------------------------------------------------------------------- /GD32VF10x/GD32VF103_usbfs_library/ustd/class/hid/usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/GD32VF103_usbfs_library/ustd/class/hid/usb_hid.h -------------------------------------------------------------------------------- /GD32VF10x/GD32VF103_usbfs_library/ustd/class/msc/msc_bbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/GD32VF103_usbfs_library/ustd/class/msc/msc_bbb.h -------------------------------------------------------------------------------- /GD32VF10x/GD32VF103_usbfs_library/ustd/class/msc/usb_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/GD32VF103_usbfs_library/ustd/class/msc/usb_msc.h -------------------------------------------------------------------------------- /GD32VF10x/RISCV/drivers/n200_eclic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/drivers/n200_eclic.h -------------------------------------------------------------------------------- /GD32VF10x/RISCV/drivers/n200_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/drivers/n200_func.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/drivers/n200_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/drivers/n200_func.h -------------------------------------------------------------------------------- /GD32VF10x/RISCV/drivers/n200_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/drivers/n200_timer.h -------------------------------------------------------------------------------- /GD32VF10x/RISCV/drivers/riscv_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/drivers/riscv_bits.h -------------------------------------------------------------------------------- /GD32VF10x/RISCV/drivers/riscv_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/drivers/riscv_const.h -------------------------------------------------------------------------------- /GD32VF10x/RISCV/drivers/riscv_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/drivers/riscv_encoding.h -------------------------------------------------------------------------------- /GD32VF10x/RISCV/env_Eclipse/GD32VF103x4.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/env_Eclipse/GD32VF103x4.lds -------------------------------------------------------------------------------- /GD32VF10x/RISCV/env_Eclipse/GD32VF103x6.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/env_Eclipse/GD32VF103x6.lds -------------------------------------------------------------------------------- /GD32VF10x/RISCV/env_Eclipse/GD32VF103x8.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/env_Eclipse/GD32VF103x8.lds -------------------------------------------------------------------------------- /GD32VF10x/RISCV/env_Eclipse/GD32VF103xB.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/env_Eclipse/GD32VF103xB.lds -------------------------------------------------------------------------------- /GD32VF10x/RISCV/env_Eclipse/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/env_Eclipse/entry.S -------------------------------------------------------------------------------- /GD32VF10x/RISCV/env_Eclipse/handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/env_Eclipse/handlers.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/env_Eclipse/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/env_Eclipse/init.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/env_Eclipse/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/env_Eclipse/start.S -------------------------------------------------------------------------------- /GD32VF10x/RISCV/env_Eclipse/your_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/env_Eclipse/your_printf.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/env_IAR/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/env_IAR/compiler.h -------------------------------------------------------------------------------- /GD32VF10x/RISCV/env_IAR/cstartup.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/env_IAR/cstartup.s -------------------------------------------------------------------------------- /GD32VF10x/RISCV/env_IAR/low_level_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/env_IAR/low_level_init.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/stubs/_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/stubs/_exit.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/stubs/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/stubs/close.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/stubs/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/stubs/fstat.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/stubs/isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/stubs/isatty.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/stubs/lseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/stubs/lseek.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/stubs/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/stubs/read.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/stubs/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/stubs/sbrk.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/stubs/stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/stubs/stub.h -------------------------------------------------------------------------------- /GD32VF10x/RISCV/stubs/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/stubs/write.c -------------------------------------------------------------------------------- /GD32VF10x/RISCV/stubs/write_hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32VF10x/RISCV/stubs/write_hex.c -------------------------------------------------------------------------------- /GD32W51x/CMSIS/GD/GD32W51x/Include/gd32w51x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32W51x/CMSIS/GD/GD32W51x/Include/gd32w51x.h -------------------------------------------------------------------------------- /GD32W51x/CMSIS/GD/GD32W51x/Include/system_gd32w51x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32W51x/CMSIS/GD/GD32W51x/Include/system_gd32w51x.h -------------------------------------------------------------------------------- /GD32W51x/CMSIS/GD/GD32W51x/Source/ARM/startup_gd32w51x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32W51x/CMSIS/GD/GD32W51x/Source/ARM/startup_gd32w51x.s -------------------------------------------------------------------------------- /GD32W51x/CMSIS/GD/GD32W51x/Source/IAR/startup_gd32w51x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32W51x/CMSIS/GD/GD32W51x/Source/IAR/startup_gd32w51x.s -------------------------------------------------------------------------------- /GD32W51x/CMSIS/GD/GD32W51x/Source/system_gd32w51x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32W51x/CMSIS/GD/GD32W51x/Source/system_gd32w51x.c -------------------------------------------------------------------------------- /GD32W51x/GD32W51x_usbfs_library/ustd/class/cdc/usb_cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32W51x/GD32W51x_usbfs_library/ustd/class/cdc/usb_cdc.h -------------------------------------------------------------------------------- /GD32W51x/GD32W51x_usbfs_library/ustd/class/hid/usb_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32W51x/GD32W51x_usbfs_library/ustd/class/hid/usb_hid.h -------------------------------------------------------------------------------- /GD32W51x/GD32W51x_usbfs_library/ustd/class/msc/msc_bbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32W51x/GD32W51x_usbfs_library/ustd/class/msc/msc_bbb.h -------------------------------------------------------------------------------- /GD32W51x/GD32W51x_usbfs_library/ustd/class/msc/msc_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32W51x/GD32W51x_usbfs_library/ustd/class/msc/msc_scsi.h -------------------------------------------------------------------------------- /GD32W51x/GD32W51x_usbfs_library/ustd/class/msc/usb_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32W51x/GD32W51x_usbfs_library/ustd/class/msc/usb_msc.h -------------------------------------------------------------------------------- /GD32W51x/GD32W51x_usbfs_library/ustd/common/usb_ch9_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/GD32W51x/GD32W51x_usbfs_library/ustd/common/usb_ch9_std.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityGD32Cores/GD32Firmware/HEAD/README.md --------------------------------------------------------------------------------