📄 main.c
字号:
/********************************************************************** * * Copyright (c) 2004, Dy 4 Systems All rights reserved. * This Source Code is the Property of Dy 4 Systems Inc. and * can only be used in accordance with Source Code License * Agreement of Dy 4 Systems Inc. dba (doing business as) * CURTISS-WRIGHT CONTROLS EMBEDDED COMPUTING, "CWCEC". * **********************************************************************//********************************************************************************* Filename: demo/main.c ** Copyright 2004 by DY4 Systems. All Rights Reserved.** Project Name: 182/145 BSP** Target: 182/145** Description: On-board CPU communication library** Usage: ** Log: * 2003-10-06-JCS Initial revision * * 23sep04,mb PT 2185 : Replacement of call to init() function with * sysMmsInit() due to redundance. Removed init function.* ********************************************************************************/#include "vxWorks.h"#include "taskLib.h"#include "sysLib.h"#include "h/drv/dy4Debug/dy4Debug.h"extern int tst1(void);extern int tst2(void);extern int tst3(void);extern int tst4(void);extern int tst5(void);extern STATUS sysMmsInit(void);void mmsTest( void ) { sysMmsInit(); /* added a slight taskDelay to allow for the init to finalize. */ taskDelay(50); tst1(); tst2(); tst3(); tst4(); tst5(); DEBUGMP(("mmsTest: done\n")); taskDelay( sysClkRateGet() ); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -