motorola自己开发的针对coldfire 5272的Dbug bootloader程序

源代码在线查看: config.h

软件大小: 1260 K
上传用户: SLing2008
关键词: bootloader motorola coldfire 5272
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*
				 * File:        proj/m5272c3/src/config.h
				 * Purpose:     Configuration information for dBUG
				 *
				 * Notes:		This file automatically included by dbug.h
				 *
				 */
				
				/********************************************************************/
				
				#ifndef _CONFIG_H
				#define _CONFIG_H
				
				/********************************************************************/
				
				#define CPU_MCF5272
				
				/********************************************************************/
				
				/* Enable board level debug prints */
				/* #define DEBUG_PRINT */
				
				/* Enable the TFTP download capability */
				#define DBUG_NETWORK
				
				/********************************************************************/
				
				/*
				 * Include the board specific definitions and prototypes.
				 *
				 * NOTE: When config.h is included, the basic types int8, int16, int32
				 * uint8, uint16, and uint32 are not yet defined. As a result, it is
				 * not possible to use these types in data structures or prototypes
				 * in .h.
				 */
				#include "m5272c3.h"
				
				/********************************************************************/
				
				#endif /* _CONFIG_H */
							

相关资源