?? init.gel
字號(hào):
/* This GEL file is loaded on the command line of Code Composer
* The StartUp() function is called every time you start
* Code Composer. You can customize this function to
* initialize wait states or to perform other initialization.
*/
#define WDCR *(unsigned int *)0x7029
#define WDKEY *(unsigned int *)0x7025
#define SCSR1 *(unsigned int *)0x7018
StartUp()
{
GEL_Reset();
WDCR = 0xe8;
WDKEY = 0x55;
WDKEY = 0xaa;
SCSR1 = 0x81fe;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -