在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例C/C++语言基础 → GD32串口相关实例代码

GD32串口相关实例代码

C/C++语言基础

下载此实例
  • 开发语言:C/C++
  • 实例大小:7.60M
  • 下载次数:9
  • 浏览次数:45
  • 发布时间:2023-08-15
  • 实例类别:C/C++语言基础
  • 发 布 人:王王工
  • 文件格式:.zip
  • 所需积分:2
 相关标签: GD32 GD3 32 GD d3

实例介绍

【实例简介】GD32串口相关实例代码

【实例截图】

from clipboard

【核心代码】

.
├── 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


标签: GD32 GD3 32 GD d3

实例下载地址

GD32串口相关实例代码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警