syscst.h

来自「ARM得编程实例。很经典。在win ce5.0环境下的编程实例」· C头文件 代码 · 共 31 行

H
31
字号
/*******************************************************************
                 
*******************************************************************/

#ifndef SYSCUSTOM_H
#define SYSCUSTOM_H

#define SYNCYCLE  24           /* System Cycle Time Constant */

/**************************** Global Variables *****************************/
#ifdef INTEL_X86_CPU 
    extern HBOX tskBox;
    extern HBOX grpBox;
    extern UINT synTick;           /* System cycle timer */
    extern UINT kbdcode;           /* Keyboard Code      */
    #ifdef DEBUG
    extern BYTE mypage ;
    #endif
#endif

/************************** Function Prototype *****************************/
#ifdef INTEL_X86_CPU 
    RESULT   CreateTask(void);     /* Create a task and start it   */
    INTRFUNC mcusrrti(void);       /* Custom real-time timer interrupt */
#endif

void     SysCstInit(void);     /* System Custom Initialization */
void     Run(void);            /* Main working task function body  */

#endif /* SYSCUSTOM_H */

⌨️ 快捷键说明

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