嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 20 元微信扫码支付:20 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
小熊派GD32学习过程中的资料和编写的代码
BearPi-GD32F303RGT6
├── Firmware
│ ├── 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_driver
│ │ ├── Include
│ │ │ ├── usbd_core.h
│ │ │ ├── usbd_int.h
│ │ │ ├── usbd_pwr.h
│ │ │ ├── usbd_regs.h
│ │ │ └── usbd_std.h
│ │ └── Source
│ │ ├── usbd_core.c
│ │ ├── usbd_int.c
│ │ ├── usbd_pwr.c
│ │ └── usbd_std.c
│ └── GD32F30x_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
├── Hardware
│ ├── include
│ │ ├── led.h
│ │ ├── soft_i2c.h
│ │ ├── timer.h
│ │ └── uart.h
│ ├── led.c
│ ├── soft_i2c.c
│ ├── timer.c
│ └── uart.c
├── LICENSE
├── Project
│ ├── 01_LED
│ │ ├── MDK-ARM
│ │ │ ├── EventRecorderStub.scvd
│ │ │ ├── JLinkLog.txt
│ │ │ ├── JLinkSettings.ini
│ │ │ ├── Objects
│ │ │ │ ├── ExtDll.iex
│ │ │ │ ├── gd32f303.sct
│ │ │ │ ├── gd32f30x_gpio.crf
│ │ │ │ ├── gd32f30x_it.crf
│ │ │ │ ├── gd32f30x_rcu.crf
│ │ │ │ ├── gd32f30x_usart.crf
│ │ │ │ ├── led.crf
│ │ │ │ ├── main.crf
│ │ │ │ ├── system_gd32f30x.crf
│ │ │ │ ├── systick.crf
│ │ │ │ └── uart.crf
│ │ │ ├── gd32f303.uvguix.william
│ │ │ ├── gd32f303.uvoptx
│ │ │ └── gd32f303.uvprojx
│ │ ├── gd32f30x_it.c
│ │ ├── gd32f30x_it.h
│ │ ├── gd32f30x_libopt.h
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── systick.c
│ │ └── systick.h
│ ├── 02_Hello
│ │ ├── MDK-ARM
│ │ │ ├── EventRecorderStub.scvd
│ │ │ ├── JLinkLog.txt
│ │ │ ├── JLinkSettings.ini
│ │ │ ├── Objects
│ │ │ │ ├── ExtDll.iex
│ │ │ │ ├── gd32f303.sct
│ │ │ │ ├── gd32f30x_gpio.crf
│ │ │ │ ├── gd32f30x_it.crf
│ │ │ │ ├── gd32f30x_rcu.crf
│ │ │ │ ├── gd32f30x_usart.crf
│ │ │ │ ├── led.crf
│ │ │ │ ├── main.crf
│ │ │ │ ├── system_gd32f30x.crf
│ │ │ │ ├── systick.crf
│ │ │ │ └── uart.crf
│ │ │ ├── gd32f303.uvguix.william
│ │ │ ├── gd32f303.uvoptx
│ │ │ └── gd32f303.uvprojx
│ │ ├── gd32f30x_it.c
│ │ ├── gd32f30x_it.h
│ │ ├── gd32f30x_libopt.h
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── systick.c
│ │ └── systick.h
│ ├── 03_UartDMA
│ │ ├── MDK-ARM
│ │ │ ├── EventRecorderStub.scvd
│ │ │ ├── JLinkLog.txt
│ │ │ ├── JLinkSettings.ini
│ │ │ ├── Objects
│ │ │ │ ├── ExtDll.iex
│ │ │ │ ├── gd32f303.sct
│ │ │ │ ├── gd32f30x_dma.crf
│ │ │ │ ├── gd32f30x_gpio.crf
│ │ │ │ ├── gd32f30x_it.crf
│ │ │ │ ├── gd32f30x_misc.crf
│ │ │ │ ├── gd32f30x_rcu.crf
│ │ │ │ ├── gd32f30x_usart.crf
│ │ │ │ ├── led.crf
│ │ │ │ ├── main.crf
│ │ │ │ ├── system_gd32f30x.crf
│ │ │ │ ├── systick.crf
│ │ │ │ └── uart.crf
│ │ │ ├── gd32f303.uvguix.william
│ │ │ ├── gd32f303.uvoptx
│ │ │ └── gd32f303.uvprojx
│ │ ├── gd32f30x_it.c
│ │ ├── gd32f30x_it.h
│ │ ├── gd32f30x_libopt.h
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── systick.c
│ │ └── systick.h
│ ├── 04_UartReceive
│ │ ├── MDK-ARM
│ │ │ ├── EventRecorderStub.scvd
│ │ │ ├── JLinkLog.txt
│ │ │ ├── JLinkSettings.ini
│ │ │ ├── Objects
│ │ │ │ ├── ExtDll.iex
│ │ │ │ ├── gd32f303.sct
│ │ │ │ ├── gd32f30x_dma.crf
│ │ │ │ ├── gd32f30x_gpio.crf
│ │ │ │ ├── gd32f30x_it.crf
│ │ │ │ ├── gd32f30x_misc.crf
│ │ │ │ ├── gd32f30x_rcu.crf
│ │ │ │ ├── gd32f30x_usart.crf
│ │ │ │ ├── led.crf
│ │ │ │ ├── main.crf
│ │ │ │ ├── system_gd32f30x.crf
│ │ │ │ ├── systick.crf
│ │ │ │ └── uart.crf
│ │ │ ├── gd32f303.uvguix.william
│ │ │ ├── gd32f303.uvoptx
│ │ │ └── gd32f303.uvprojx
│ │ ├── gd32f30x_it.c
│ │ ├── gd32f30x_it.h
│ │ ├── gd32f30x_libopt.h
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── systick.c
│ │ └── systick.h
│ ├── 05_Timer
│ │ ├── MDK-ARM
│ │ │ ├── EventRecorderStub.scvd
│ │ │ ├── JLinkLog.txt
│ │ │ ├── JLinkSettings.ini
│ │ │ ├── Objects
│ │ │ │ ├── ExtDll.iex
│ │ │ │ ├── gd32f303.sct
│ │ │ │ ├── gd32f30x_dma.crf
│ │ │ │ ├── gd32f30x_gpio.crf
│ │ │ │ ├── gd32f30x_it.crf
│ │ │ │ ├── gd32f30x_misc.crf
│ │ │ │ ├── gd32f30x_rcu.crf
│ │ │ │ ├── gd32f30x_timer.crf
│ │ │ │ ├── gd32f30x_usart.crf
│ │ │ │ ├── led.crf
│ │ │ │ ├── main.crf
│ │ │ │ ├── system_gd32f30x.crf
│ │ │ │ ├── systick.crf
│ │ │ │ ├── timer.crf
│ │ │ │ └── uart.crf
│ │ │ ├── gd32f303.uvguix.william
│ │ │ ├── gd32f303.uvoptx
│ │ │ └── gd32f303.uvprojx
│ │ ├── gd32f30x_it.c
│ │ ├── gd32f30x_it.h
│ │ ├── gd32f30x_libopt.h
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── systick.c
│ │ └── systick.h
│ ├── 06_PWM
│ │ ├── MDK-ARM
│ │ │ ├── EventRecorderStub.scvd
│ │ │ ├── JLinkLog.txt
│ │ │ ├── JLinkSettings.ini
│ │ │ ├── Objects
│ │ │ │ ├── ExtDll.iex
│ │ │ │ ├── gd32f303.sct
│ │ │ │ ├── gd32f30x_dma.crf
│ │ │ │ ├── gd32f30x_gpio.crf
│ │ │ │ ├── gd32f30x_it.crf
│ │ │ │ ├── gd32f30x_misc.crf
│ │ │ │ ├── gd32f30x_rcu.crf
│ │ │ │ ├── gd32f30x_timer.crf
│ │ │ │ ├── gd32f30x_usart.crf
│ │ │ │ ├── led.crf
│ │ │ │ ├── main.crf
│ │ │ │ ├── system_gd32f30x.crf
│ │ │ │ ├── systick.crf
│ │ │ │ ├── timer.crf
│ │ │ │ └── uart.crf
│ │ │ ├── gd32f303.uvguix.william
│ │ │ ├── gd32f303.uvoptx
│ │ │ └── gd32f303.uvprojx
│ │ ├── gd32f30x_it.c
│ │ ├── gd32f30x_it.h
│ │ ├── gd32f30x_libopt.h
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── readme.txt
│ │ ├── systick.c
│ │ └── systick.h
│ └── 07_Soft_I2C
│ ├── MDK-ARM
│ │ ├── EventRecorderStub.scvd
│ │ ├── JLinkLog.txt
│ │ ├── JLinkSettings.ini
│ │ ├── Objects
│ │ │ ├── ExtDll.iex
│ │ │ ├── at24c02.crf
│ │ │ ├── gd32f303.sct
│ │ │ ├── gd32f30x_dma.crf
│ │ │ ├── gd32f30x_gpio.crf
│ │ │ ├── gd32f30x_it.crf
│ │ │ ├── gd32f30x_misc.crf
│ │ │ ├── gd32f30x_rcu.crf
│ │ │ ├── gd32f30x_timer.crf
│ │ │ ├── gd32f30x_usart.crf
│ │ │ ├── led.crf
│ │ │ ├── main.crf
│ │ │ ├── soft_i2c.crf
│ │ │ ├── system_gd32f30x.crf
│ │ │ ├── systick.crf
│ │ │ ├── timer.crf
│ │ │ └── uart.crf
│ │ ├── gd32f303.uvguix.william
│ │ ├── gd32f303.uvoptx
│ │ └── gd32f303.uvprojx
│ ├── at24c02.c
│ ├── at24c02.h
│ ├── gd32f30x_it.c
│ ├── gd32f30x_it.h
│ ├── gd32f30x_libopt.h
│ ├── main.c
│ ├── main.h
│ ├── readme.txt
│ ├── systick.c
│ └── systick.h
├── README.md
└── tools
├── BearPi-IoT(GD32)_Schematic.pdf
├── GD32F303xx_Datasheet_Rev1.4.pdf
├── GD32F30x_Firmware_Library.rar
├── GD32F30x_User_Manual_CN_v2.3.pdf
├── GigaDevice-Product-Selection-Guide_2020.pdf
├── GigaDevice.GD32F30x_DFP.2.0.0.pack
└── keygen-2032.rar
42 directories, 303 files