在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例嵌入式开发 → GD32F103移植freeRTOS源码

GD32F103移植freeRTOS源码

嵌入式开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:4.47M
  • 下载次数:29
  • 浏览次数:396
  • 发布时间:2022-05-26
  • 实例类别:嵌入式开发
  • 发 布 人:molin2050
  • 文件格式:.zip
  • 所需积分:2
 相关标签: FreeRTOS RTOS F103 GD32 GD3

实例介绍

【实例简介】GD32F103移植freeRTOS源码

【实例截图】

from clipboard

【核心代码】

.
├── GD32F103移植freeRTOS源码.zip
└── gd32f103x_-templates-master
    ├── BSP
    │   ├── DevicesCRC.c
    │   ├── DevicesCRC.h
    │   ├── DevicesDelay.c
    │   ├── DevicesDelay.h
    │   ├── DevicesFlash.c
    │   ├── DevicesFlash.h
    │   ├── DevicesKey.c
    │   ├── DevicesKey.h
    │   ├── DevicesLed.c
    │   ├── DevicesLed.h
    │   ├── DevicesList.c
    │   ├── DevicesList.h
    │   ├── DevicesMem.c
    │   ├── DevicesMem.h
    │   ├── DevicesMotor.c
    │   ├── DevicesMotor.h
    │   ├── DevicesQueue.c
    │   ├── DevicesQueue.h
    │   ├── DevicesRandom.c
    │   ├── DevicesRandom.h
    │   ├── DevicesSoftTimer.c
    │   ├── DevicesSoftTimer.h
    │   ├── DevicesTime.c
    │   ├── DevicesTime.h
    │   ├── DevicesTimer.c
    │   ├── DevicesTimer.h
    │   ├── DevicesUart.c
    │   ├── DevicesUart.h
    │   ├── DevicesWatchDog.c
    │   └── DevicesWatchDog.h
    ├── Firmware
    │   ├── 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
    │   │   │           └── 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
    ├── Middlewares
    │   └── FreeRTOS
    │       ├── croutine.c
    │       ├── event_groups.c
    │       ├── include
    │       │   ├── FreeRTOS.h
    │       │   ├── FreeRTOSConfig.h
    │       │   ├── StackMacros.h
    │       │   ├── atomic.h
    │       │   ├── croutine.h
    │       │   ├── deprecated_definitions.h
    │       │   ├── event_groups.h
    │       │   ├── list.h
    │       │   ├── message_buffer.h
    │       │   ├── mpu_prototypes.h
    │       │   ├── mpu_wrappers.h
    │       │   ├── portable.h
    │       │   ├── projdefs.h
    │       │   ├── queue.h
    │       │   ├── semphr.h
    │       │   ├── stack_macros.h
    │       │   ├── stdint.readme
    │       │   ├── stream_buffer.h
    │       │   ├── task.h
    │       │   └── timers.h
    │       ├── list.c
    │       ├── portable
    │       │   ├── GCC
    │       │   │   ├── ARM_CM0
    │       │   │   │   ├── port.c
    │       │   │   │   └── portmacro.h
    │       │   │   ├── ARM_CM23
    │       │   │   │   ├── non_secure
    │       │   │   │   │   ├── port.c
    │       │   │   │   │   ├── portasm.c
    │       │   │   │   │   ├── portasm.h
    │       │   │   │   │   └── portmacro.h
    │       │   │   │   └── secure
    │       │   │   │       ├── secure_context.c
    │       │   │   │       ├── secure_context.h
    │       │   │   │       ├── secure_context_port.c
    │       │   │   │       ├── secure_heap.c
    │       │   │   │       ├── secure_heap.h
    │       │   │   │       ├── secure_init.c
    │       │   │   │       ├── secure_init.h
    │       │   │   │       └── secure_port_macros.h
    │       │   │   ├── ARM_CM23_NTZ
    │       │   │   │   └── non_secure
    │       │   │   │       ├── port.c
    │       │   │   │       ├── portasm.c
    │       │   │   │       ├── portasm.h
    │       │   │   │       └── portmacro.h
    │       │   │   ├── ARM_CM3
    │       │   │   │   ├── port.c
    │       │   │   │   └── portmacro.h
    │       │   │   ├── ARM_CM33
    │       │   │   │   ├── non_secure
    │       │   │   │   │   ├── port.c
    │       │   │   │   │   ├── portasm.c
    │       │   │   │   │   ├── portasm.h
    │       │   │   │   │   └── portmacro.h
    │       │   │   │   └── secure
    │       │   │   │       ├── secure_context.c
    │       │   │   │       ├── secure_context.h
    │       │   │   │       ├── secure_context_port.c
    │       │   │   │       ├── secure_heap.c
    │       │   │   │       ├── secure_heap.h
    │       │   │   │       ├── secure_init.c
    │       │   │   │       ├── secure_init.h
    │       │   │   │       └── secure_port_macros.h
    │       │   │   ├── ARM_CM33_NTZ
    │       │   │   │   └── non_secure
    │       │   │   │       ├── port.c
    │       │   │   │       ├── portasm.c
    │       │   │   │       ├── portasm.h
    │       │   │   │       └── portmacro.h
    │       │   │   ├── ARM_CM3_MPU
    │       │   │   │   ├── port.c
    │       │   │   │   └── portmacro.h
    │       │   │   ├── ARM_CM4F
    │       │   │   │   ├── port.c
    │       │   │   │   └── portmacro.h
    │       │   │   ├── ARM_CM4_MPU
    │       │   │   │   ├── port.c
    │       │   │   │   └── portmacro.h
    │       │   │   └── ARM_CM7
    │       │   │       ├── ReadMe.txt
    │       │   │       └── r0p1
    │       │   │           ├── port.c
    │       │   │           └── portmacro.h
    │       │   ├── Keil
    │       │   │   └── See-also-the-RVDS-directory.txt
    │       │   ├── MemMang
    │       │   │   ├── ReadMe.url
    │       │   │   ├── heap_1.c
    │       │   │   ├── heap_2.c
    │       │   │   ├── heap_3.c
    │       │   │   ├── heap_4.c
    │       │   │   └── heap_5.c
    │       │   ├── RVDS
    │       │   │   ├── ARM7_LPC21xx
    │       │   │   │   ├── port.c
    │       │   │   │   ├── portASM.s
    │       │   │   │   ├── portmacro.h
    │       │   │   │   └── portmacro.inc
    │       │   │   ├── ARM_CA9
    │       │   │   │   ├── port.c
    │       │   │   │   ├── portASM.s
    │       │   │   │   ├── portmacro.h
    │       │   │   │   └── portmacro.inc
    │       │   │   ├── ARM_CM0
    │       │   │   │   ├── port.c
    │       │   │   │   └── portmacro.h
    │       │   │   ├── ARM_CM3
    │       │   │   │   ├── port.c
    │       │   │   │   └── portmacro.h
    │       │   │   ├── ARM_CM4F
    │       │   │   │   ├── port.c
    │       │   │   │   └── portmacro.h
    │       │   │   ├── ARM_CM4_MPU
    │       │   │   │   ├── port.c
    │       │   │   │   └── portmacro.h
    │       │   │   └── ARM_CM7
    │       │   │       ├── ReadMe.txt
    │       │   │       └── r0p1
    │       │   │           ├── port.c
    │       │   │           └── portmacro.h
    │       │   └── readme.txt
    │       ├── queue.c
    │       ├── stream_buffer.c
    │       ├── tasks.c
    │       └── timers.c
    ├── Project
    │   ├── EventRecorderStub.scvd
    │   ├── GD32Fx_Templates.uvguix.admin
    │   ├── GD32Fx_Templates.uvoptx
    │   ├── GD32Fx_Templates.uvprojx
    │   ├── Listings
    │   │   ├── GD32Fx_Templates.map
    │   │   └── startup_gd32f10x_hd.lst
    │   └── Objects
    │       ├── ExtDll.iex
    │       ├── GD32Fx_Templates.axf
    │       ├── GD32Fx_Templates.build_log.htm
    │       ├── GD32Fx_Templates.htm
    │       ├── GD32Fx_Templates.lnp
    │       ├── GD32Fx_Templates.sct
    │       ├── croutine.crf
    │       ├── croutine.d
    │       ├── devicescrc.crf
    │       ├── devicescrc.d
    │       ├── devicesdelay.crf
    │       ├── devicesdelay.d
    │       ├── devicesflash.crf
    │       ├── devicesflash.d
    │       ├── deviceskey.crf
    │       ├── deviceskey.d
    │       ├── devicesled.crf
    │       ├── devicesled.d
    │       ├── deviceslist.crf
    │       ├── deviceslist.d
    │       ├── devicesmem.crf
    │       ├── devicesmem.d
    │       ├── devicesmotor.crf
    │       ├── devicesmotor.d
    │       ├── devicesqueue.crf
    │       ├── devicesqueue.d
    │       ├── devicesrandom.crf
    │       ├── devicesrandom.d
    │       ├── devicessofttimer.crf
    │       ├── devicessofttimer.d
    │       ├── devicestime.crf
    │       ├── devicestime.d
    │       ├── devicestimer.crf
    │       ├── devicestimer.d
    │       ├── devicesuart.crf
    │       ├── devicesuart.d
    │       ├── deviceswatchdog.crf
    │       ├── deviceswatchdog.d
    │       ├── event_groups.crf
    │       ├── event_groups.d
    │       ├── gd32f10x_adc.crf
    │       ├── gd32f10x_adc.d
    │       ├── gd32f10x_bkp.crf
    │       ├── gd32f10x_bkp.d
    │       ├── gd32f10x_can.crf
    │       ├── gd32f10x_can.d
    │       ├── gd32f10x_crc.crf
    │       ├── gd32f10x_crc.d
    │       ├── gd32f10x_dac.crf
    │       ├── gd32f10x_dac.d
    │       ├── gd32f10x_dbg.crf
    │       ├── gd32f10x_dbg.d
    │       ├── gd32f10x_dma.crf
    │       ├── gd32f10x_dma.d
    │       ├── gd32f10x_enet.d
    │       ├── gd32f10x_exmc.crf
    │       ├── gd32f10x_exmc.d
    │       ├── gd32f10x_exti.crf
    │       ├── gd32f10x_exti.d
    │       ├── gd32f10x_fmc.crf
    │       ├── gd32f10x_fmc.d
    │       ├── gd32f10x_fwdgt.crf
    │       ├── gd32f10x_fwdgt.d
    │       ├── gd32f10x_gpio.crf
    │       ├── gd32f10x_gpio.d
    │       ├── gd32f10x_i2c.crf
    │       ├── gd32f10x_i2c.d
    │       ├── gd32f10x_it.crf
    │       ├── gd32f10x_it.d
    │       ├── gd32f10x_misc.crf
    │       ├── gd32f10x_misc.d
    │       ├── gd32f10x_pmu.crf
    │       ├── gd32f10x_pmu.d
    │       ├── gd32f10x_rcu.crf
    │       ├── gd32f10x_rcu.d
    │       ├── gd32f10x_rtc.crf
    │       ├── gd32f10x_rtc.d
    │       ├── gd32f10x_sdio.crf
    │       ├── gd32f10x_sdio.d
    │       ├── gd32f10x_spi.crf
    │       ├── gd32f10x_spi.d
    │       ├── gd32f10x_timer.crf
    │       ├── gd32f10x_timer.d
    │       ├── gd32f10x_usart.crf
    │       ├── gd32f10x_usart.d
    │       ├── gd32f10x_wwdgt.crf
    │       ├── gd32f10x_wwdgt.d
    │       ├── gd32f1x0_can.d
    │       ├── gd32f1x0_ivref.d
    │       ├── gd32f1x0_opa.d
    │       ├── gd32f1x0_slcd.d
    │       ├── heap_3.crf
    │       ├── heap_3.d
    │       ├── heap_4.crf
    │       ├── heap_4.d
    │       ├── list.crf
    │       ├── list.d
    │       ├── main.crf
    │       ├── main.d
    │       ├── port.crf
    │       ├── port.d
    │       ├── queue.crf
    │       ├── queue.d
    │       ├── startup_gd32f10x_hd.d
    │       ├── stream_buffer.crf
    │       ├── stream_buffer.d
    │       ├── system_gd32f10x.crf
    │       ├── system_gd32f10x.d
    │       ├── systick.crf
    │       ├── systick.d
    │       ├── tasks.crf
    │       ├── tasks.d
    │       ├── timers.crf
    │       ├── timers.d
    │       ├── userregistertest.crf
    │       ├── userregistertest.d
    │       ├── usertask.crf
    │       └── usertask.d
    ├── System
    │   ├── gd32f10x_it.c
    │   ├── gd32f10x_it.h
    │   ├── gd32f10x_libopt.h
    │   ├── readme.txt
    │   ├── systick.c
    │   └── systick.h
    ├── User
    │   ├── main.c
    │   ├── main.h
    │   ├── userTask.c
    │   ├── userTask.h
    │   └── version.h
    └── kill.bat

50 directories, 322 files


标签: FreeRTOS RTOS F103 GD32 GD3

实例下载地址

GD32F103移植freeRTOS源码

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警