MC68HC908_SCI

所属分类:单片机开发
开发工具:Others
文件大小:175KB
下载次数:44
上传日期:2006-09-18 10:43:06
上 传 者wqy
说明:  Motorola公司单片机MC68HC908实现SCI功能的实例程序,C语言在Code Warrier集成环境中编写。
(Motorola MCU MC68HC908 companies achieve SCI function of the sample program, C language in the Code Warrier prepared integrated environment.)

文件列表:
SCI\SCI_RX_no_int\C_Layout.hwl (856, 2002-11-27)
SCI\SCI_RX_no_int\Default.mem (161, 2002-11-27)
SCI\SCI_RX_no_int\P&E_FCS.ini (882, 2004-09-14)
SCI\SCI_RX_no_int\sci.mcp (35595, 2005-08-05)
SCI\SCI_RX_no_int\bin\P&E_FCS.abs (46955, 2005-08-05)
SCI\SCI_RX_no_int\bin\P&E_FCS.bpt (12, 2004-09-14)
SCI\SCI_RX_no_int\bin\P&E_FCS.map (25972, 2005-08-05)
SCI\SCI_RX_no_int\bin\P&E_FCS.mrk (21, 2004-09-14)
SCI\SCI_RX_no_int\bin\P&E_FCS.abs.s19 (776, 2005-08-05)
SCI\SCI_RX_no_int\bin (0, 2006-06-10)
SCI\SCI_RX_no_int\cmd\P&E_FCS_Startup.cmd (59, 2004-09-13)
SCI\SCI_RX_no_int\cmd\P&E_FCS_Preload.cmd (60, 2004-09-13)
SCI\SCI_RX_no_int\cmd\P&E_FCS_Reset.cmd (60, 2004-09-13)
SCI\SCI_RX_no_int\cmd\P&E_FCS_Postload.cmd (111, 2004-09-13)
SCI\SCI_RX_no_int\cmd (0, 2006-06-10)
SCI\SCI_RX_no_int\prm\burner.bbl (138, 2001-05-31)
SCI\SCI_RX_no_int\prm\P&E_FCS_linker.prm (967, 2003-05-11)
SCI\SCI_RX_no_int\prm (0, 2006-06-10)
SCI\SCI_RX_no_int\sci_Data\CWSettingsWindows.stg (4314, 2005-08-05)
SCI\SCI_RX_no_int\sci_Data\P&E_FCS\TargetDataWindows.tdt (103601, 2005-08-05)
SCI\SCI_RX_no_int\sci_Data\P&E_FCS\ObjectCode\main.c.o (6956, 2005-08-05)
SCI\SCI_RX_no_int\sci_Data\P&E_FCS\ObjectCode\MC68HC908SR12.C.o (44244, 2005-08-02)
SCI\SCI_RX_no_int\sci_Data\P&E_FCS\ObjectCode\Start08.c.o (6261, 2005-08-02)
SCI\SCI_RX_no_int\sci_Data\P&E_FCS\ObjectCode (0, 2006-06-10)
SCI\SCI_RX_no_int\sci_Data\P&E_FCS (0, 2006-06-10)
SCI\SCI_RX_no_int\sci_Data (0, 2006-06-10)
SCI\SCI_RX_no_int\Sources\main.c (789, 2005-08-05)
SCI\SCI_RX_no_int\Sources\Start08.c (8963, 2003-04-24)
SCI\SCI_RX_no_int\Sources (0, 2006-06-10)
SCI\SCI_RX_no_int (0, 2006-06-10)
SCI\SCI_RXTX_int\C_Layout.hwl (856, 2002-11-27)
SCI\SCI_RXTX_int\Default.mem (161, 2002-11-27)
SCI\SCI_RXTX_int\P&E_FCS.ini (882, 2004-09-15)
SCI\SCI_RXTX_int\sci.mcp (35595, 2005-08-05)
SCI\SCI_RXTX_int\bin\P&E_FCS.abs (47965, 2005-08-05)
SCI\SCI_RXTX_int\bin\P&E_FCS.bpt (12, 2004-09-15)
SCI\SCI_RXTX_int\bin\P&E_FCS.map (27033, 2005-08-05)
SCI\SCI_RXTX_int\bin\P&E_FCS.mrk (21, 2004-09-15)
... ...

//------------------------------------------------------------------------ // Readme.txt //------------------------------------------------------------------------ This project stationery is designed to get you up and running quickly with CodeWarrior for MC68HC908SR12. It is set up for the selected CPU and target connection, but can be easily modified. Sample code for the following language(s) is at your disposal: - C The wizard has prepared CodeWarrior target(s) with the connection methods of your choice: - P&E FCS: This interface/target is prepared to use the FCS (Full Chip Simulation) from P&E. Note that you can switch to hardware debugging in a seamless way, using the menu PEDebug > Mode in the debugger. Additional connections can be chosen in the simulator/debugger, use the menu Component > Set Target. //------------------------------------------------------------------------ // Getting Started //------------------------------------------------------------------------ To build/debug your project, use the menu Project > Debug or press F5. This will open the simulator/debugger. Press again F5 in the debugger (or menu Run > Start/Continue) to start the application. The menu Run > Halt or F6 stops the application. In the debugger menu Component > Open you can load additional components. //------------------------------------------------------------------------ // Project structure //------------------------------------------------------------------------ The project generated contains various files/folders: - readme.txt: this file - Sources: folder with the application source code - Startup Code: C/C++ startup code - Prm: - burner.bbl file to generate S-Records - the linker .prm file - the .map file generated by the linker - Libs: needed library files (ANSI, derivative header/implementation files) - Debugger Project File: contains a .ini file for the debugger for each connection - Debugger Cmd Files: contains sub-folders for each connection with command files //------------------------------------------------------------------------ // 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 provided. //------------------------------------------------------------------------ // Simulator/Debugger: Additional components //------------------------------------------------------------------------ In the simulator/debugger, you can load additional components. Try the menu Component > Open. //------------------------------------------------------------------------ // Additional documentation //------------------------------------------------------------------------ Check out the online documentation provided. Use in CodeWarrior IDE the menu Help > Online Manuals. //------------------------------------------------------------------------ // Contacting Metrowerks //------------------------------------------------------------------------ For bug reports, technical questions, and suggestions, please use the forms in the Release Notes folder installed, and send them to: USA: support@metrowerks.com EUROPE: support_europe@metrowerks.com ASIA/PACIFIC: j-emb-sup@metrowerks.com

近期下载者

相关文件


收藏者