欢迎来到传世资源网!
加载中...
正在加载,请耐心等待...
本站为收藏、学习站,如有侵权,请联系管理员删除!

GD32F303程序例程

介绍 评论 失效链接反馈

GD32F303程序例程
from clipboard.
├── 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
│   │   │   │   ├── Listings
│   │   │   │   │   ├── gd32f303.map
│   │   │   │   │   └── startup_gd32f30x_xd.lst
│   │   │   │   ├── Objects
│   │   │   │   │   ├── ExtDll.iex
│   │   │   │   │   ├── gd32f303.axf
│   │   │   │   │   ├── gd32f303.build_log.htm
│   │   │   │   │   ├── gd32f303.hex
│   │   │   │   │   ├── gd32f303.htm
│   │   │   │   │   ├── gd32f303.lnp
│   │   │   │   │   ├── gd32f303.sct
│   │   │   │   │   ├── gd32f303_Target1.dep
│   │   │   │   │   ├── gd32f303_sct.Bak
│   │   │   │   │   ├── gd32f30x_dma.crf
│   │   │   │   │   ├── gd32f30x_dma.d
│   │   │   │   │   ├── gd32f30x_dma.o
│   │   │   │   │   ├── gd32f30x_gpio.crf
│   │   │   │   │   ├── gd32f30x_gpio.d
│   │   │   │   │   ├── gd32f30x_gpio.o
│   │   │   │   │   ├── gd32f30x_it.crf
│   │   │   │   │   ├── gd32f30x_it.d
│   │   │   │   │   ├── gd32f30x_it.o
│   │   │   │   │   ├── gd32f30x_misc.crf
│   │   │   │   │   ├── gd32f30x_misc.d
│   │   │   │   │   ├── gd32f30x_misc.o
│   │   │   │   │   ├── gd32f30x_rcu.crf
│   │   │   │   │   ├── gd32f30x_rcu.d
│   │   │   │   │   ├── gd32f30x_rcu.o
│   │   │   │   │   ├── gd32f30x_usart.crf
│   │   │   │   │   ├── gd32f30x_usart.d
│   │   │   │   │   ├── gd32f30x_usart.o
│   │   │   │   │   ├── led.crf
│   │   │   │   │   ├── led.d
│   │   │   │   │   ├── led.o
│   │   │   │   │   ├── main.crf
│   │   │   │   │   ├── main.d
│   │   │   │   │   ├── main.o
│   │   │   │   │   ├── startup_gd32f30x_xd.d
│   │   │   │   │   ├── startup_gd32f30x_xd.o
│   │   │   │   │   ├── system_gd32f30x.crf
│   │   │   │   │   ├── system_gd32f30x.d
│   │   │   │   │   ├── system_gd32f30x.o
│   │   │   │   │   ├── systick.crf
│   │   │   │   │   ├── systick.d
│   │   │   │   │   ├── systick.o
│   │   │   │   │   ├── uart.crf
│   │   │   │   │   ├── uart.d
│   │   │   │   │   └── uart.o
│   │   │   │   ├── gd32f303.uvguix.Administrator
│   │   │   │   ├── 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
└── 找例子网_GD32F303RGT6.zip

44 directories, 338 files

下载声明:

本站资源均有第三方用户自行上传分享推荐,非本站自制,仅供玩家做交流学习之用!切勿用于商业用途!游戏作品版权归原作者享有,如有版权问题,请附带版权证明至邮件,本平台将应您的要求删除。
相关推荐:

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复