📄 target.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -