uCOS_II_PPC_1.0

所属分类:uCOS/RTOS
开发工具:Windows_Unix
文件大小:283KB
下载次数:89
上传日期:2015-12-09 21:04:47
上 传 者ysuchao
说明:  ucos-ii 在freescale mpc5604上的移植版本,经过验证可以比较稳定的运行;当运行于企业级产品时,请经过严格验证后使用,业余爱好者可以自由使用。
(ucos-ii on freescale mpc5604b)

文件列表:
uCOS_II_PPC_1.0\bin\internal_FLASH.elf (64704, 2012-12-21)
uCOS_II_PPC_1.0\bin\internal_FLASH.MAP (80359, 2012-12-21)
uCOS_II_PPC_1.0\bin\internal_FLASH.mot (31812, 2012-12-21)
uCOS_II_PPC_1.0\lcf\MPC5604B_M27V.lcf (2239, 2012-12-18)
uCOS_II_PPC_1.0\lcf\MPC5604B_M27V_DEBUG.lcf (1839, 2012-12-18)
uCOS_II_PPC_1.0\src\app_cfg.h (1834, 2012-12-19)
uCOS_II_PPC_1.0\src\Bsp\bsp.c (8381, 2012-12-21)
uCOS_II_PPC_1.0\src\Bsp\bsp.h (2801, 2012-12-19)
uCOS_II_PPC_1.0\src\Bsp\gpio\gpio.c (1375, 2012-11-26)
uCOS_II_PPC_1.0\src\Bsp\gpio\gpio.h (347, 2012-12-18)
uCOS_II_PPC_1.0\src\CPU\cpu.h (17233, 2012-12-19)
uCOS_II_PPC_1.0\src\CPU\cpu_a.s (6559, 2012-12-19)
uCOS_II_PPC_1.0\src\CPU\cpu_def.h (8354, 2012-12-18)
uCOS_II_PPC_1.0\src\Exceptions.c (3319, 2012-12-18)
uCOS_II_PPC_1.0\src\Exceptions.h (1537, 2012-12-18)
uCOS_II_PPC_1.0\src\includes.h (753, 2012-12-19)
uCOS_II_PPC_1.0\src\IntcInterrupts.c (8990, 2012-12-18)
uCOS_II_PPC_1.0\src\IntcInterrupts.h (2142, 2012-12-18)
uCOS_II_PPC_1.0\src\ivor_branch_table.c (2311, 2012-12-18)
uCOS_II_PPC_1.0\src\main.c (11364, 2012-12-21)
uCOS_II_PPC_1.0\src\MPC55xx_init.c (3401, 2012-12-18)
uCOS_II_PPC_1.0\src\MPC55xx_init_debug.c (2087, 2012-12-18)
uCOS_II_PPC_1.0\src\MPC5604B_M27V.h (123330, 2009-07-06)
uCOS_II_PPC_1.0\src\MPC5604B_M27V_HWInit.c (11143, 2012-12-18)
uCOS_II_PPC_1.0\src\MPC5604B_M27V_HWInit.h (5885, 2012-12-18)
uCOS_II_PPC_1.0\src\os_cfg.h (10437, 2012-12-18)
uCOS_II_PPC_1.0\src\typedefs.h (4691, 2012-12-18)
uCOS_II_PPC_1.0\src\uCOS-II\os_core.c (89132, 2012-12-18)
uCOS_II_PPC_1.0\src\uCOS-II\os_flag.c (56007, 2012-12-18)
uCOS_II_PPC_1.0\src\uCOS-II\os_mbox.c (30872, 2012-12-18)
uCOS_II_PPC_1.0\src\uCOS-II\os_mem.c (19939, 2012-12-18)
uCOS_II_PPC_1.0\src\uCOS-II\os_mutex.c (37693, 2012-12-18)
uCOS_II_PPC_1.0\src\uCOS-II\os_q.c (42240, 2012-12-18)
uCOS_II_PPC_1.0\src\uCOS-II\os_sem.c (29431, 2012-12-18)
uCOS_II_PPC_1.0\src\uCOS-II\os_task.c (52090, 2012-12-18)
uCOS_II_PPC_1.0\src\uCOS-II\os_time.c (11432, 2012-12-18)
uCOS_II_PPC_1.0\src\uCOS-II\os_tmr.c (46902, 2012-12-18)
uCOS_II_PPC_1.0\src\uCOS-II\ucos_ii.h (82537, 2012-12-18)
uCOS_II_PPC_1.0\src\XPC5604B\os_cpu.h (5193, 2012-12-19)
... ...

//------------------------------------------------------------------------ // Readme.txt //------------------------------------------------------------------------ This project stationery is designed to get you up and running quickly with CodeWarrior on your MPC5604B_M27V target. The wizard has created the following CodeWarrior target(s): The targets are set up for the selected CPU and options, but can be easily modified. ************* * IMPORTANT * ************* If your application will run from flash memory, you should initialize some additional registers to improve system performance. For MPC551x devices, initialize the PFCRP0 and PFCRP1 registers; for other devices, initialize the BIUCR. Please review the MPC5604B_M27V reference manual to determine appropriate values. Sample code for the following language(s) is at your disposal: Other options may be available: //------------------------------------------------------------------------ // Getting Started //------------------------------------------------------------------------ To build your project, use the menu Project > Make or press F7. This will build the selected target. //------------------------------------------------------------------------ // Project structure //------------------------------------------------------------------------ The project generated contains various files/groups: - readme.txt: this file - Sources: folder with the application source code - Header Files: all application and runtime header files - Startup Code: user customizable startup code - Lcf Files: the linker command files for the different build targets. - Runtime: the libraries //------------------------------------------------------------------------ // Adding your own code //------------------------------------------------------------------------ Once everything is working as expected, you can begin adding your own code to the project. Keep in mind that we provide this as an example of how to get up and running quickly with CodeWarrior. There are certainly other ways to handle interrupts and set up your linker command file. Feel free to modify any of the source files provided. //------------------------------------------------------------------------ // Additional documentation //------------------------------------------------------------------------ Read the online documentation provided. From within the CodeWarrior IDE, select Help > CodeWarrior Help. //------------------------------------------------------------------------ // Contacting Freescale //------------------------------------------------------------------------ For bug reports, technical questions, and suggestions, please use the forms installed in the Release_Notes folder and send them to: cw_support@freescale.com

近期下载者

相关文件


收藏者