usrappinit.c
来自「实现vxworks下的1553b通讯功能」· C语言 代码 · 共 37 行
C
37 行
/* usrAppInit.c - stub application initialization routine */
/* Copyright 1984-1998 Wind River Systems, Inc. */
/*
modification history
--------------------
01a,02jun98,ms written
*/
/*
DESCRIPTION
Initialize user application code.
*/
/******************************************************************************
*
* usrAppInit - initialize the users application
*/
void usrAppInit (void)
{
#ifdef USER_APPL_INIT
USER_APPL_INIT; /* for backwards compatibility */
#endif
usrAtaConfig (1,0,"C:");
chdir("C:");
printf("hello vxworks! vxworks was created on 2008-12-12\n");
main_hex();
/* add application specific code here */
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?