nt9856x/code/application/source/cardv/SrcCode/UIApp/UIAppObj.c
2023-09-26 15:38:36 +08:00

33 lines
1.1 KiB
C
Executable File

#include "PrjInc.h"
//local debug level: THIS_DBGLVL
#define THIS_DBGLVL 2 // 0=FATAL, 1=ERR, 2=WRN, 3=UNIT, 4=FUNC, 5=IND, 6=MSG, 7=VALUE, 8=USER
///////////////////////////////////////////////////////////////////////////////
#define __MODULE__ UIAppComm
#define __DBGLVL__ ((THIS_DBGLVL>=PRJ_DBG_LVL)?THIS_DBGLVL:PRJ_DBG_LVL)
#define __DBGFLT__ "*" //*=All, [mark]=CustomClass
#include <kwrap/debug.h>
///////////////////////////////////////////////////////////////////////////////
extern VControl SystemObjCtrl;
extern VControl UISetupObjCtrl;
//the order of this array should be the same as APP_TYPE
VControl *gAppCtrlTypeList[APP_TYPE_MAX - APP_TYPE_MIN] = {
&SystemObjCtrl, //APP_BASE
&UISetupObjCtrl, //APP_SETUP
0, //APP_PLAY
0, //APP_PHOTO
0, //APP_MOVIEPLAY
0, //APP_MOVIEREC
0, //APP_PRINT
0, //APP_PCC,
0, //APP_MSDC
#if(WIFI_AP_FUNC==ENABLE)
0, //APP_WIFICMD
#endif
0, // APP_PASSWORD
};