NXP ARM处理器CAN总线程序(keil环境)

源代码在线查看: can.h

软件大小: 162 K
上传用户: liuchuyuan
关键词: keil NXP ARM CAN
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*****************************************************************************
				 *   can.h:  Header file for NXP LPC230x Family Microprocessors
				 *
				 *   Copyright(C) 2006, NXP Semiconductor
				 *   All rights reserved.
				 *
				 *   History
				 *   2006.09.20  ver 1.00    Prelimnary version, first Release
				 *
				******************************************************************************/ 
				#ifndef __CAN_H 
				#define __CAN_H
				
				#define ACCEPTANCE_FILTER_ENABLED	1
				
				#define CAN_MEM_BASE		0xE0038000
				
				#define MAX_PORTS	2		/* Number of CAN port on the chip */		
				
				/* BRP+1 = Fpclk/(CANBitRate * QUANTAValue)
				   QUANTAValue = 1 + (Tseg1+1) + (Tseg2+1)
				   QUANTA value varies based on the Fpclk and sample point
				   e.g. (1) sample point is 87.5%, Fpclk is 48Mhz
				   the QUANTA should be 16
				        (2) sample point is 90%, Fpclk is 12.5Mhz
				   the QUANTA should be 10 
				   Fpclk = Fclk /APBDIV
				   or
				   BitRate = Fcclk/(APBDIV * (BRP+1) * ((Tseg1+1)+(Tseg2+1)+1))
				*/ 	
				/* Here are some popular bit timing settings for LPC23xx, google on "SJA1000"
				CAN bit timing, the same IP used inside LPC2000 CAN controller. There are several 
				bit timing calculators on the internet. 
				http://www.port.de/engl/canprod/sv_req_form.html
				http://www.kvaser.com/can/index.htm
				*/
				
				/**
				 * Bit Timing Values for 16MHz clk frequency
				 */
				#define BITRATE100K16MHZ          0x001C0009
				#define BITRATE125K16MHZ          0x001C0007
				#define BITRATE250K16MHZ          0x001C0003
				#define BITRATE500K16MHZ          0x001C0001
				#define BITRATE1000K16MHZ         0x001C0000
				
				/*
				 * Bit Timing Values for 24MHz clk frequency
				 */
				#define BITRATE100K24MHZ          0x001C000E
				#define BITRATE125K24MHZ          0x001C000B
				#define BITRATE250K24MHZ          0x001C0005
				#define BITRATE500K24MHZ          0x001C0002
				#define BITRATE1000K24MHZ         0x00090001
				
				/*
				 * Bit Timing Values for 48MHz clk frequency
				 */
				#define BITRATE100K48MHZ          0x001C001D
				#define BITRATE125K48MHZ          0x001C0017
				#define BITRATE250K48MHZ          0x001C000B
				#define BITRATE500K48MHZ          0x001C0005
				#define BITRATE1000K48MHZ         0x001C0002
				
				/*
				 * Bit Timing Values for 60MHz clk frequency
				 */
				#define BITRATE100K60MHZ          0x00090031
				#define BITRATE125K60MHZ          0x00090027
				#define BITRATE250K60MHZ          0x00090013
				#define BITRATE500K60MHZ          0x00090009
				#define BITRATE1000K60MHZ         0x00090004
				
				/*
				 * Bit Timing Values for 28.8MHz pclk frequency, 1/2 of 576.Mhz CCLK
				 */
				#define BITRATE100K28_8MHZ        0x00090017
				
				/* When Fcclk is 50Mhz and 60Mhz and APBDIV is 4,
				so Fpclk is 12.5Mhz and 15Mhz respectively. 
				when Fpclk is 12.5Mhz, QUANTA is 10 and sample point is 90% 
				when Fpclk is 15Mhz, QUANTA is 10 and sample point is 90% */
				
				/* Common CAN bit rates for 12.5Mhz(50Mhz CCLK) clock frequency */
				#define BITRATE125K12_5MHZ		0x00070009
				#define BITRATE250K12_5MHZ		0x00070004
				
				/**
				 * Bit Timing Values for 15MHz(60Mhz CCLK) clk frequency
				 */
				#define BITRATE100K15MHZ		0x0007000E
				#define BITRATE125K15MHZ		0x0007000B
				#define BITRATE250K15MHZ		0x00070005
				#define BITRATE500K15MHZ		0x00070002
				
				/* Acceptance filter mode in AFMR register */
				#define ACCF_OFF				0x01
				#define ACCF_BYPASS				0x02
				#define ACCF_ON					0x00
				#define ACCF_FULLCAN			0x04
				
				/* This number applies to all FULLCAN IDs, explicit STD IDs, group STD IDs, 
				explicit EXT IDs, and group EXT IDs. */ 
				#define ACCF_IDEN_NUM			4
				
				/* Identifiers for FULLCAN, EXP STD, GRP STD, EXP EXT, GRP EXT */
				#define FULLCAN_ID				0x100
				#define EXP_STD_ID				0x100
				#define GRP_STD_ID				0x200
				#define EXP_EXT_ID				0x100000
				#define GRP_EXT_ID				0x200000
				
				// Type definition to hold a CAN message
				typedef struct
				{
					DWORD Frame; 	// Bits 16..19: DLC - Data Length Counter
									// Bit 30: Set if this is a RTR message
									// Bit 31: Set if this is a 29-bit ID message
					DWORD MsgID;	// CAN Message ID (11-bit or 29-bit)
					DWORD DataA;	// CAN Message Data Bytes 0-3
					DWORD DataB;	// CAN Message Data Bytes 4-7
				} CAN_MSG;
				
				
				/**************************************************************************
				PUBLIC FUNCTIONS
				***************************************************************************/
				DWORD CAN_Init( DWORD can_btr );
				void CAN_SetACCF_Lookup( void );
				void CAN_SetACCF( DWORD ACCFMode );
				DWORD CAN1_SendMessage( CAN_MSG* pTXBuf );
				DWORD CAN2_SendMessage( CAN_MSG* pTXBuf );
				
				#endif	// __CAN_H
				
				/******************************************************************************
				**                            End Of File
				******************************************************************************/
				
							

相关资源