基本信息
源码名称:GD32串口相关实例代码
源码大小:7.60M
文件格式:.zip
开发语言:C/C++
更新时间:2023-08-15
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
GD32串口相关实例代码

.
├── 18_sdram
│   ├── 18_sdram.uvguix.gingko
│   ├── 18_sdram.uvguix.li
│   ├── 18_sdram.uvoptx
│   ├── 18_sdram.uvprojx
│   ├── Core
│   │   ├── Inc
│   │   │   ├── fmc.h
│   │   │   ├── gpio.h
│   │   │   ├── main.h
│   │   │   ├── stm32f4xx_hal_conf.h
│   │   │   └── stm32f4xx_it.h
│   │   └── Src
│   │       ├── fmc.c
│   │       ├── gpio.c
│   │       ├── main.c
│   │       ├── stm32f4xx_hal_msp.c
│   │       ├── stm32f4xx_it.c
│   │       └── system_stm32f4xx.c
│   ├── Drivers
│   │   ├── CMSIS
│   │   │   ├── Device
│   │   │   │   └── ST
│   │   │   │       └── STM32F4xx
│   │   │   │           ├── Include
│   │   │   │           │   ├── stm32f429xx.h
│   │   │   │           │   ├── stm32f4xx.h
│   │   │   │           │   └── system_stm32f4xx.h
│   │   │   │           └── Source
│   │   │   │               └── Templates
│   │   │   └── Include
│   │   │       ├── cmsis_armcc.h
│   │   │       ├── cmsis_armclang.h
│   │   │       ├── cmsis_compiler.h
│   │   │       ├── cmsis_gcc.h
│   │   │       ├── cmsis_iccarm.h
│   │   │       ├── cmsis_version.h
│   │   │       ├── core_armv8mbl.h
│   │   │       ├── core_armv8mml.h
│   │   │       ├── core_cm0.h
│   │   │       ├── core_cm0plus.h
│   │   │       ├── core_cm1.h
│   │   │       ├── core_cm23.h
│   │   │       ├── core_cm3.h
│   │   │       ├── core_cm33.h
│   │   │       ├── core_cm4.h
│   │   │       ├── core_cm7.h
│   │   │       ├── core_sc000.h
│   │   │       ├── core_sc300.h
│   │   │       ├── mpu_armv7.h
│   │   │       ├── mpu_armv8.h
│   │   │       └── tz_context.h
│   │   └── STM32F4xx_HAL_Driver
│   │       ├── Inc
│   │       │   ├── Legacy
│   │       │   │   └── stm32_hal_legacy.h
│   │       │   ├── stm32f4xx_hal.h
│   │       │   ├── stm32f4xx_hal_cortex.h
│   │       │   ├── stm32f4xx_hal_def.h
│   │       │   ├── stm32f4xx_hal_dma.h
│   │       │   ├── stm32f4xx_hal_dma_ex.h
│   │       │   ├── stm32f4xx_hal_exti.h
│   │       │   ├── stm32f4xx_hal_flash.h
│   │       │   ├── stm32f4xx_hal_flash_ex.h
│   │       │   ├── stm32f4xx_hal_flash_ramfunc.h
│   │       │   ├── stm32f4xx_hal_gpio.h
│   │       │   ├── stm32f4xx_hal_gpio_ex.h
│   │       │   ├── stm32f4xx_hal_pwr.h
│   │       │   ├── stm32f4xx_hal_pwr_ex.h
│   │       │   ├── stm32f4xx_hal_rcc.h
│   │       │   ├── stm32f4xx_hal_rcc_ex.h
│   │       │   ├── stm32f4xx_hal_sdram.h
│   │       │   ├── stm32f4xx_hal_tim.h
│   │       │   ├── stm32f4xx_hal_tim_ex.h
│   │       │   └── stm32f4xx_ll_fmc.h
│   │       └── Src
│   │           ├── stm32f4xx_hal.c
│   │           ├── stm32f4xx_hal_cortex.c
│   │           ├── stm32f4xx_hal_dma.c
│   │           ├── stm32f4xx_hal_dma_ex.c
│   │           ├── stm32f4xx_hal_exti.c
│   │           ├── stm32f4xx_hal_flash.c
│   │           ├── stm32f4xx_hal_flash_ex.c
│   │           ├── stm32f4xx_hal_flash_ramfunc.c
│   │           ├── stm32f4xx_hal_gpio.c
│   │           ├── stm32f4xx_hal_pwr.c
│   │           ├── stm32f4xx_hal_pwr_ex.c
│   │           ├── stm32f4xx_hal_rcc.c
│   │           ├── stm32f4xx_hal_rcc_ex.c
│   │           ├── stm32f4xx_hal_sdram.c
│   │           ├── stm32f4xx_hal_tim.c
│   │           ├── stm32f4xx_hal_tim_ex.c
│   │           └── stm32f4xx_ll_fmc.c
│   ├── EventRecorderStub.scvd
│   ├── JLinkLog.txt
│   ├── JLinkSettings.ini
│   ├── Listings
│   │   ├── iCore3L_demo.map
│   │   └── startup_gd32f450.lst
│   ├── Objects
│   │   ├── 11_dac_Target 1.dep
│   │   ├── 13_rtc_Target 1.dep
│   │   ├── 14_i2c_Target 1.dep
│   │   ├── 14_iic_Target 1.dep
│   │   ├── 15_dma_Target 1.dep
│   │   ├── 16_sdio_Target 1.dep
│   │   ├── 17_fatfs_Target 1.dep
│   │   ├── 18_sdram_Target 1.dep
│   │   ├── ExtDll.iex
│   │   ├── dac.crf
│   │   ├── dac.d
│   │   ├── dac.o
│   │   ├── diskio.crf
│   │   ├── diskio.d
│   │   ├── diskio.o
│   │   ├── dma.crf
│   │   ├── dma.d
│   │   ├── dma.o
│   │   ├── eeprom.crf
│   │   ├── eeprom.d
│   │   ├── eeprom.o
│   │   ├── ff.crf
│   │   ├── ff.d
│   │   ├── ff.o
│   │   ├── fmc_operation.crf
│   │   ├── fmc_operation.d
│   │   ├── fmc_operation.o
│   │   ├── gd32f450i_eval.crf
│   │   ├── gd32f450i_eval.d
│   │   ├── gd32f450i_eval.o
│   │   ├── gd32f4xx_dac.crf
│   │   ├── gd32f4xx_dac.d
│   │   ├── gd32f4xx_dac.o
│   │   ├── gd32f4xx_dma.crf
│   │   ├── gd32f4xx_dma.d
│   │   ├── gd32f4xx_dma.o
│   │   ├── gd32f4xx_exmc.crf
│   │   ├── gd32f4xx_exmc.d
│   │   ├── gd32f4xx_exmc.o
│   │   ├── gd32f4xx_exti.crf
│   │   ├── gd32f4xx_exti.d
│   │   ├── gd32f4xx_exti.o
│   │   ├── gd32f4xx_fmc.crf
│   │   ├── gd32f4xx_fmc.d
│   │   ├── gd32f4xx_fmc.o
│   │   ├── gd32f4xx_gpio.crf
│   │   ├── gd32f4xx_gpio.d
│   │   ├── gd32f4xx_gpio.o
│   │   ├── gd32f4xx_i2c.crf
│   │   ├── gd32f4xx_i2c.d
│   │   ├── gd32f4xx_i2c.o
│   │   ├── gd32f4xx_it.crf
│   │   ├── gd32f4xx_it.d
│   │   ├── gd32f4xx_it.o
│   │   ├── gd32f4xx_misc.crf
│   │   ├── gd32f4xx_misc.d
│   │   ├── gd32f4xx_misc.o
│   │   ├── gd32f4xx_pmu.crf
│   │   ├── gd32f4xx_pmu.d
│   │   ├── gd32f4xx_pmu.o
│   │   ├── gd32f4xx_rcu.crf
│   │   ├── gd32f4xx_rcu.d
│   │   ├── gd32f4xx_rcu.o
│   │   ├── gd32f4xx_rtc.crf
│   │   ├── gd32f4xx_rtc.d
│   │   ├── gd32f4xx_rtc.o
│   │   ├── gd32f4xx_sdio.crf
│   │   ├── gd32f4xx_sdio.d
│   │   ├── gd32f4xx_sdio.o
│   │   ├── gd32f4xx_syscfg.crf
│   │   ├── gd32f4xx_syscfg.d
│   │   ├── gd32f4xx_syscfg.o
│   │   ├── gd32f4xx_usart.crf
│   │   ├── gd32f4xx_usart.d
│   │   ├── gd32f4xx_usart.o
│   │   ├── i2c.crf
│   │   ├── i2c.d
│   │   ├── i2c.o
│   │   ├── iCore3L_demo.axf
│   │   ├── iCore3L_demo.build_log.htm
│   │   ├── iCore3L_demo.hex
│   │   ├── iCore3L_demo.htm
│   │   ├── iCore3L_demo.lnp
│   │   ├── iCore3L_demo.sct
│   │   ├── iCore3L_demo_sct.Bak
│   │   ├── led.crf
│   │   ├── led.d
│   │   ├── led.o
│   │   ├── main.crf
│   │   ├── main.d
│   │   ├── main.o
│   │   ├── rtc.crf
│   │   ├── rtc.d
│   │   ├── rtc.o
│   │   ├── sdcard.crf
│   │   ├── sdcard.d
│   │   ├── sdcard.o
│   │   ├── sdio.crf
│   │   ├── sdio.d
│   │   ├── sdio.o
│   │   ├── sdram.crf
│   │   ├── sdram.d
│   │   ├── sdram.o
│   │   ├── startup_gd32f450.d
│   │   ├── startup_gd32f450.o
│   │   ├── system_gd32f4xx.crf
│   │   ├── system_gd32f4xx.d
│   │   ├── system_gd32f4xx.o
│   │   ├── systick.crf
│   │   ├── systick.d
│   │   ├── systick.o
│   │   ├── usart0.crf
│   │   ├── usart0.d
│   │   └── usart0.o
│   ├── RTE
│   │   └── _Target_1
│   │       └── RTE_Components.h
│   ├── User
│   │   ├── Inc
│   │   │   └── stm32f429ighx_discovery_sdram.h
│   │   └── Src
│   │       └── stm32f429ighx_discovery_sdram.c
│   ├── clean.bat
│   ├── driver
│   │   ├── gd32f450i_eval.c
│   │   ├── gd32f4xx_it.c
│   │   ├── led.c
│   │   ├── sdram.c
│   │   ├── systick.c
│   │   └── usart0.c
│   ├── fwlib
│   │   ├── CMSIS
│   │   │   ├── GD
│   │   │   │   └── GD32F4xx
│   │   │   │       ├── Include
│   │   │   │       │   ├── gd32f4xx.h
│   │   │   │       │   └── system_gd32f4xx.h
│   │   │   │       └── Source
│   │   │   │           ├── ARM
│   │   │   │           │   ├── startup_gd32f405.s
│   │   │   │           │   ├── startup_gd32f407.s
│   │   │   │           │   └── startup_gd32f450.s
│   │   │   │           ├── IAR
│   │   │   │           │   ├── startup_gd32f405.s
│   │   │   │           │   ├── startup_gd32f407.s
│   │   │   │           │   └── startup_gd32f450.s
│   │   │   │           └── system_gd32f4xx.c
│   │   │   ├── core_cm4.h
│   │   │   ├── core_cm4_simd.h
│   │   │   ├── core_cmFunc.h
│   │   │   └── core_cmInstr.h
│   │   ├── 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
│   ├── include
│   │   ├── gd32f450i_eval.h
│   │   ├── gd32f4xx_it.h
│   │   ├── gd32f4xx_libopt.h
│   │   ├── led.h
│   │   ├── sdram.h
│   │   ├── systick.h
│   │   └── usart0.h
│   └── main
│       ├── main.c
│       └── main.h
└── GD32串口_18_sdram.zip

37 directories, 286 files