?? config.h
字號:
/*********************************************************************************************************
** Small RTOX(51)
** The Real-Time Kernel(For Keil c51)
**
** (c) Copyright 2002-2002, chenmingji
** All Rights Reserved
**
** V0.50
**
**
** 文件名: CONFIG.H
** 創建人: 陳明計
** 日 期: 2002年2月22日
** 描 述: 與應用相關的配置頭文件
**
**------------------------------------------------------------------------------------------------------
** 修改人:
** 日 期:
** 描 述:
**
**------------------------------------------------------------------------------------------------------
********************************************************************************************************/
/********************************/
/* "以下為系統配置" */
/********************************/
#pragma REGPARMS
#include <reg52.h>
#include <intrins.h>
#include <absacc.h>
#define const code
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
/********************************/
/* "以下為程序配置" */
/********************************/
#define NBYTE 6
#define STARTBYTE1 0xf0
#define STARTBYTE2 0xf1
#define SERIAL_IN_BUF_LONG 32
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -