sysset.c

来自「在ARM7和UC/OSII的平台上实现了GPS自动报站的功能,涉及GPS模块LE」· C语言 代码 · 共 38 行

C
38
字号
/****************************************************************
**                                                              *
**  FILE         :  SysSet.C                                    *
**  COPYRIGHT    :  (c) 2001 .Xiamen Yaxon NetWork CO.LTD       *
**                                                              *
**                                                              *
**  By : CCH 2002.1.15                                          *
****************************************************************/
#include "includes.h"
#include "tools.h"
#include "version.h"
#include "prompt.h"
#include "itemmenu.h"
#include "adconst.h"
#include "selring.h"
#include "setkeypt.h"
#include "setpick.h"
#include "setcha.h"
#include "sysset.h"

#if EN_HANDSET > 0



static void ReadVersion(void)
{
    ActivateStringPrompt_TIME(StrVersion, 0);
}



static ITEMMENU_STRUCT  MENU_VERSION            = {ITEM_FCN,   "  版本说明", ReadVersion, 0, 0};
static ITEMMENU_STRUCT *MENU_SYSSET_CHILD[]     = {&MENU_ADCONST, &MENU_SELRING, &MENU_SETKEYPT, 
                                                   &MENU_SETPICK, &MENU_SETCHA,  &MENU_VERSION};
ITEMMENU_STRUCT MENU_SYSSET                     = {ITEM_FMENU, "  系统设置", 0, 6, MENU_SYSSET_CHILD};

#endif

⌨️ 快捷键说明

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