⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 version.c

📁 2410/vxworks/tornado下的基本实验包括 serial,ramdrv,interrupt,multi-FTP,TCP,UDP-Under the basic experimental
💻 C
字号:
/* version.c - creation version/date/time module */#include "vxWorks.h"#include "version.h"/*modification history--------------------01b,17jan01,sn  simplify job of host val  01a,06mar96,dat	written*//*This module is always built with each executable image.  It providesthe VxWorks version id, and the time and date it was built.The date stamp may be overriden by defining RUNTIME_CREATION_DATE. Thiswill be primarily used by tools that compare images built on different hosts (host validation).The ANSI predefined macros __DATE__ and __TIME__ are used to providethe date/time information.  ANSI compliant compilers are required forbuilding all VxWorks executables.*/char * runtimeName    = RUNTIME_NAME;char * runtimeVersion = RUNTIME_VERSION;char * vxWorksVersion = VXWORKS_VERSION;#ifdef RUNTIME_CREATION_DATEchar * creationDate   = RUNTIME_CREATION_DATE;#elsechar * creationDate   = __DATE__ ", " __TIME__;#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -