udeapp.c
来自「S1D13506windml下的驱动程序,支持vxworks5.4 支持tor」· C语言 代码 · 共 39 行
C
39 行
/***************************************************************************
* *
* UDEAPP -- Auto running ugldemo *
* Copyright (c) 1999, 2001. Epson Research and Development, Inc. *
* All Rights Reserved *
* *
* THIS SOURCE CODE IS FOR TEST ONLY. *
* *
***************************************************************************/
//
// $Header: /VxWorks/WindML20FCS/13506/16BPP/File/udeapp.c 1 3/19/01 12:39p Roy $
// $Revision: 1 $
// $Log: /VxWorks/WindML20FCS/13506/16BPP/File/udeapp.c $
//
// 1 3/19/01 12:39p Roy
// Created.
//
//
//==========================================================================
#include "vxWorks.h" /* always first */
#include "config.h" /* board support configuration header */
#include "usrConfig.h" /* general configuration header */
extern void ugldemo (int mode ); /* demo */
void usrAppInit (void)
{
#ifdef USER_APPL_INIT
USER_APPL_INIT; /* for backwards compatibility */
#endif
/* add application specific code here */
taskSpawn ( "ugldemo", 110, 0, 10000, (FUNCPTR )ugldemo, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?