target.h

来自「ti dsp 5402 的BOOT程序。利用此程序实现将代码写入到FLASH 的」· C头文件 代码 · 共 28 行

H
28
字号
#ifndef __TARGET_H
#define __TARGET_H

/***********************************************************************
* Copyright (c) 2000 Texas Instruments Incorporated
*
* - Target specific inititlaization details
*
************************************************************************/
/*
 * $Log: target.h,v $
 * Revision 1.3  2001/04/19 16:29:01  heeschen
 * v00.30 Snapshot
 * Saving this stuff after massive redesign to remove RTDX dependency.
 * Next step is to clean up, fix comments, and do unit testing.
 *
 */

#define TARGET_INITIALIZE()

	/* Set wait states for external RAM (EXMEM_WAITS)
	 * and for Flash memory.
	 */
#define EXMEM_WAITS() {extern void dspInitEx(void); dspInitEx(); }       
#define FLASH_WAITS() {extern void dspInitFl(void); dspInitFl(); }       

#endif // __TARGET_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?