Phimas

Freescale msCANS08 资料

0
阅读(2294)

1.概述

2.常用术语解释

3.CAN网络的前世今生

4.msCANS08的概述

5.msCANS08 驱动

6.msCANS08 Driver API

7.msCANS08运用例程

深入描述msCANS08的运用 配以代码例程

An example link file is shown below.
/* This is a linker parameter file for the MC9S08DZ60 */
NAMES END /* CodeWarrior will pass all the needed files to the linker by command line.
But here you may add your own files too. */
SEGMENTS /* here all RAM/ROM areas of the device are listed. Used in PLACEMENT below.
*/
MSCAN_START = NO_INIT 0x1880 TO 0x1880;
ROM = READ_ONLY 0x1900 TO 0xFFBF;                                                                                                                                                          Z_RAM = READ_WRITE 0x0080 TO 0x00FF;
RAM = READ_WRITE 0x0100 TO 0x107F;
ROM1 = READ_ONLY 0x1080 TO 0x13FF;
EEPROM = NO_INIT 0x1400 TO 0x17FF;
VECTORS = READ_ONLY 0xFFC0 TO 0xFFFF;
END
PLACEMENT /* here all predefined and user segments are placed into the SEGMENTS defined
above. */
MSCAN INTO MSCAN_START;
DEFAULT_RAM INTO RAM;
DEFAULT_ROM, ROM_VAR, STRINGS INTO ROM;/* ROM1 In case you want to use ROM1 as well,
be sure the option -OnB=b is passed to the compiler. */
ZeroSeg,
_DATA_ZEROPAGE, MY_ZEROPAGE INTO Z_RAM;
VECTORS_DATA INTO VECTORS;
END
STACKSIZE 0x50
ENTRIES
_vectab
END