实例介绍
【实例简介】
实现了在zynq7000系列,移植uCOSII,开发环境为ISE14.1,开发板为zc702
【实例截图】
【核心代码】
23a4cd0d-d16d-4ed9-ba61-e3f6a82fb361
└── 新建文件夹
├── ucosii_demo
│ ├── data
│ │ ├── ucosii_demo.mss
│ │ └── ucosii_demo.tcl
│ └── src
│ ├── App
│ │ ├── app.c
│ │ ├── app_cfg.h
│ │ ├── app_hooks.c
│ │ ├── cpu_cfg.h
│ │ ├── csp_cfg.h
│ │ ├── includes.h
│ │ └── os_cfg.h
│ ├── BSP
│ │ ├── bsp.c
│ │ ├── bsp.h
│ │ ├── bsp_os.c
│ │ └── bsp_os.h
│ ├── Documentation
│ │ ├── ucos-ii_cfg_man.pdf
│ │ ├── ucos-ii_demo_wtg.pdf
│ │ └── ucos-ii_ref_man.pdf
│ ├── Init
│ │ ├── platform.c
│ │ ├── platform_config.h
│ │ └── platform.h
│ ├── lscript.ld
│ ├── readme.txt
│ ├── Settings
│ │ └── ucos-ii_demo_settings.xml
│ ├── uC-CPU
│ │ ├── ARM-Cortex-A9
│ │ │ └── GNU
│ │ │ ├── cpu_a.s
│ │ │ └── cpu.h
│ │ ├── cpu_core.c
│ │ ├── cpu_core.h
│ │ └── cpu_def.h
│ ├── uC-CSP
│ │ └── MCU
│ │ ├── csp.c
│ │ ├── csp.h
│ │ ├── csp_types.h
│ │ └── Xilinx
│ │ └── Cortex-A9_MPCore
│ │ ├── csp_gpio.c
│ │ ├── csp_grp.h
│ │ ├── csp_int.c
│ │ ├── csp_pm.c
│ │ ├── csp_tmr.c
│ │ └── Zynq-7000
│ │ └── csp_dev.h
│ ├── uC-LIB
│ │ ├── lib_ascii.c
│ │ ├── lib_ascii.h
│ │ ├── lib_def.h
│ │ ├── lib_math.c
│ │ ├── lib_math.h
│ │ ├── lib_mem.c
│ │ ├── lib_mem.h
│ │ ├── lib_str.c
│ │ └── lib_str.h
│ └── uCOS-II
│ ├── Ports
│ │ └── ARM-Cortex-A9
│ │ ├── CSP
│ │ │ ├── os_csp.h
│ │ │ └── Xilinx
│ │ │ └── Cortex-A9_MPCore
│ │ │ └── os_csp.c
│ │ └── Generic
│ │ └── GNU
│ │ ├── os_cpu_a.S
│ │ ├── os_cpu_c.c
│ │ └── os_cpu.h
│ └── Source
│ ├── os_core.c
│ ├── os_dbg_r.c
│ ├── os_flag.c
│ ├── os_mbox.c
│ ├── os_mem.c
│ ├── os_mutex.c
│ ├── os_q.c
│ ├── os_sem.c
│ ├── os_task.c
│ ├── os_time.c
│ ├── os_tmr.c
│ └── ucos_ii.h
├── ucosii_v2_00_a
│ ├── data
│ │ ├── ucosii_v2_1_0.mld
│ │ ├── ucosii_v2_1_0.mss
│ │ └── ucosii_v2_1_0.tcl
│ ├── doc
│ │ └── ucosii_v2_00_a.pdf
│ └── src
│ ├── changelog.txt
│ ├── common
│ │ ├── xil_assert.c
│ │ ├── xil_assert.h
│ │ ├── xil_cache_vxworks.h
│ │ ├── xil_hal.h
│ │ ├── xil_macroback.h
│ │ ├── xil_testcache.c
│ │ ├── xil_testcache.h
│ │ ├── xil_testio.c
│ │ ├── xil_testio.h
│ │ ├── xil_testmem.c
│ │ ├── xil_testmem.h
│ │ └── xil_types.h
│ ├── cortexa9
│ │ ├── gcc
│ │ │ ├── abort.c
│ │ │ ├── asm_vectors.S
│ │ │ ├── boot.S
│ │ │ ├── close.c
│ │ │ ├── cpu_init.S
│ │ │ ├── errno.c
│ │ │ ├── _exit.c
│ │ │ ├── fcntl.c
│ │ │ ├── fstat.c
│ │ │ ├── getpid.c
│ │ │ ├── isatty.c
│ │ │ ├── kill.c
│ │ │ ├── lseek.c
│ │ │ ├── Makefile
│ │ │ ├── _open.c
│ │ │ ├── open.c
│ │ │ ├── read.c
│ │ │ ├── _sbrk.c
│ │ │ ├── sbrk.c
│ │ │ ├── translation_table.s
│ │ │ ├── unlink.c
│ │ │ ├── write.c
│ │ │ ├── xil-crt0.S
│ │ │ └── xpseudo_asm_gcc.h
│ │ ├── print.c
│ │ ├── putnum.c
│ │ ├── sleep.c
│ │ ├── sleep.h
│ │ ├── smc.c
│ │ ├── smc.h
│ │ ├── uart.c
│ │ ├── usleep.c
│ │ ├── vectors.c
│ │ ├── vectors.h
│ │ ├── xil_cache.c
│ │ ├── xil_cache.h
│ │ ├── xil_cache_l.h
│ │ ├── xil_exception.c
│ │ ├── xil_exception.h
│ │ ├── xil_io.c
│ │ ├── xil_io.h
│ │ ├── xil_mmu.c
│ │ ├── xil_mmu.h
│ │ ├── xil_printf.c
│ │ ├── xil_printf.h
│ │ ├── xl2cc_counter.c
│ │ ├── xl2cc_counter.h
│ │ ├── xl2cc.h
│ │ ├── xparameters_ps.h
│ │ ├── xpm_counter.c
│ │ ├── xpm_counter.h
│ │ ├── xpseudo_asm.h
│ │ ├── xreg_cortexa9.h
│ │ ├── xstatus.h
│ │ ├── xtime_l.c
│ │ └── xtime_l.h
│ └── profile
│ ├── dummy.S
│ ├── Makefile
│ ├── mblaze_nt_types.h
│ ├── profile_cg.c
│ ├── _profile_clean.c
│ ├── profile_config.h
│ ├── profile.h
│ ├── profile_hist.c
│ ├── _profile_init.c
│ ├── profile_mcount_mb.S
│ ├── profile_mcount_ppc.S
│ ├── _profile_timer_hw.c
│ └── _profile_timer_hw.h
└── zynq-7000-ucosii-demo-guide.pdf
35 directories, 149 files
实现了在zynq7000系列,移植uCOSII,开发环境为ISE14.1,开发板为zc702
【实例截图】
【核心代码】
23a4cd0d-d16d-4ed9-ba61-e3f6a82fb361
└── 新建文件夹
├── ucosii_demo
│ ├── data
│ │ ├── ucosii_demo.mss
│ │ └── ucosii_demo.tcl
│ └── src
│ ├── App
│ │ ├── app.c
│ │ ├── app_cfg.h
│ │ ├── app_hooks.c
│ │ ├── cpu_cfg.h
│ │ ├── csp_cfg.h
│ │ ├── includes.h
│ │ └── os_cfg.h
│ ├── BSP
│ │ ├── bsp.c
│ │ ├── bsp.h
│ │ ├── bsp_os.c
│ │ └── bsp_os.h
│ ├── Documentation
│ │ ├── ucos-ii_cfg_man.pdf
│ │ ├── ucos-ii_demo_wtg.pdf
│ │ └── ucos-ii_ref_man.pdf
│ ├── Init
│ │ ├── platform.c
│ │ ├── platform_config.h
│ │ └── platform.h
│ ├── lscript.ld
│ ├── readme.txt
│ ├── Settings
│ │ └── ucos-ii_demo_settings.xml
│ ├── uC-CPU
│ │ ├── ARM-Cortex-A9
│ │ │ └── GNU
│ │ │ ├── cpu_a.s
│ │ │ └── cpu.h
│ │ ├── cpu_core.c
│ │ ├── cpu_core.h
│ │ └── cpu_def.h
│ ├── uC-CSP
│ │ └── MCU
│ │ ├── csp.c
│ │ ├── csp.h
│ │ ├── csp_types.h
│ │ └── Xilinx
│ │ └── Cortex-A9_MPCore
│ │ ├── csp_gpio.c
│ │ ├── csp_grp.h
│ │ ├── csp_int.c
│ │ ├── csp_pm.c
│ │ ├── csp_tmr.c
│ │ └── Zynq-7000
│ │ └── csp_dev.h
│ ├── uC-LIB
│ │ ├── lib_ascii.c
│ │ ├── lib_ascii.h
│ │ ├── lib_def.h
│ │ ├── lib_math.c
│ │ ├── lib_math.h
│ │ ├── lib_mem.c
│ │ ├── lib_mem.h
│ │ ├── lib_str.c
│ │ └── lib_str.h
│ └── uCOS-II
│ ├── Ports
│ │ └── ARM-Cortex-A9
│ │ ├── CSP
│ │ │ ├── os_csp.h
│ │ │ └── Xilinx
│ │ │ └── Cortex-A9_MPCore
│ │ │ └── os_csp.c
│ │ └── Generic
│ │ └── GNU
│ │ ├── os_cpu_a.S
│ │ ├── os_cpu_c.c
│ │ └── os_cpu.h
│ └── Source
│ ├── os_core.c
│ ├── os_dbg_r.c
│ ├── os_flag.c
│ ├── os_mbox.c
│ ├── os_mem.c
│ ├── os_mutex.c
│ ├── os_q.c
│ ├── os_sem.c
│ ├── os_task.c
│ ├── os_time.c
│ ├── os_tmr.c
│ └── ucos_ii.h
├── ucosii_v2_00_a
│ ├── data
│ │ ├── ucosii_v2_1_0.mld
│ │ ├── ucosii_v2_1_0.mss
│ │ └── ucosii_v2_1_0.tcl
│ ├── doc
│ │ └── ucosii_v2_00_a.pdf
│ └── src
│ ├── changelog.txt
│ ├── common
│ │ ├── xil_assert.c
│ │ ├── xil_assert.h
│ │ ├── xil_cache_vxworks.h
│ │ ├── xil_hal.h
│ │ ├── xil_macroback.h
│ │ ├── xil_testcache.c
│ │ ├── xil_testcache.h
│ │ ├── xil_testio.c
│ │ ├── xil_testio.h
│ │ ├── xil_testmem.c
│ │ ├── xil_testmem.h
│ │ └── xil_types.h
│ ├── cortexa9
│ │ ├── gcc
│ │ │ ├── abort.c
│ │ │ ├── asm_vectors.S
│ │ │ ├── boot.S
│ │ │ ├── close.c
│ │ │ ├── cpu_init.S
│ │ │ ├── errno.c
│ │ │ ├── _exit.c
│ │ │ ├── fcntl.c
│ │ │ ├── fstat.c
│ │ │ ├── getpid.c
│ │ │ ├── isatty.c
│ │ │ ├── kill.c
│ │ │ ├── lseek.c
│ │ │ ├── Makefile
│ │ │ ├── _open.c
│ │ │ ├── open.c
│ │ │ ├── read.c
│ │ │ ├── _sbrk.c
│ │ │ ├── sbrk.c
│ │ │ ├── translation_table.s
│ │ │ ├── unlink.c
│ │ │ ├── write.c
│ │ │ ├── xil-crt0.S
│ │ │ └── xpseudo_asm_gcc.h
│ │ ├── print.c
│ │ ├── putnum.c
│ │ ├── sleep.c
│ │ ├── sleep.h
│ │ ├── smc.c
│ │ ├── smc.h
│ │ ├── uart.c
│ │ ├── usleep.c
│ │ ├── vectors.c
│ │ ├── vectors.h
│ │ ├── xil_cache.c
│ │ ├── xil_cache.h
│ │ ├── xil_cache_l.h
│ │ ├── xil_exception.c
│ │ ├── xil_exception.h
│ │ ├── xil_io.c
│ │ ├── xil_io.h
│ │ ├── xil_mmu.c
│ │ ├── xil_mmu.h
│ │ ├── xil_printf.c
│ │ ├── xil_printf.h
│ │ ├── xl2cc_counter.c
│ │ ├── xl2cc_counter.h
│ │ ├── xl2cc.h
│ │ ├── xparameters_ps.h
│ │ ├── xpm_counter.c
│ │ ├── xpm_counter.h
│ │ ├── xpseudo_asm.h
│ │ ├── xreg_cortexa9.h
│ │ ├── xstatus.h
│ │ ├── xtime_l.c
│ │ └── xtime_l.h
│ └── profile
│ ├── dummy.S
│ ├── Makefile
│ ├── mblaze_nt_types.h
│ ├── profile_cg.c
│ ├── _profile_clean.c
│ ├── profile_config.h
│ ├── profile.h
│ ├── profile_hist.c
│ ├── _profile_init.c
│ ├── profile_mcount_mb.S
│ ├── profile_mcount_ppc.S
│ ├── _profile_timer_hw.c
│ └── _profile_timer_hw.h
└── zynq-7000-ucosii-demo-guide.pdf
35 directories, 149 files
标签:
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论