📄 udeapp.c
字号:
/***************************************************************************
* *
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -