?? test_outputinfo.c
字號(hào):
// Print Infomation to Serial Port
#include "includes.h"
extern INT8U crsN,crsType[10];
extern INT16U crsDist[10];
extern INT8U nowLoop;
void Test_PrintInfoTOSCI(void) {
INT8U i;
InitSCI0();
prints("\n----------------\n");
prints("crsN = %d\n", crsN);
prints("nowLoop = %d\n", nowLoop);
for (i = 0;i <= crsN;i++) {
prints("%d : Dist -> %d \t Type -> %d\n", i, crsDist[i], crsType[i]);
}
prints("\n----------------\n");
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -