dechit.h
来自「keelop的877与913源代码架构为做遥控的朋友提供帮助」· C头文件 代码 · 共 28 行
H
28 行
// Module DECHIT.h
//
// include this file when using the HiTech C compiler
//
#define HITECH
#include <pic.h>
#include <string.h>
typedef unsigned char byte;
typedef signed char sbyte;
typedef signed int word;
#define TRUE 1
#define FALSE 0
#define ON 1
#define OFF 0
#define BIT_TEST( x, y) (( (x) & (1<<(y))) != 0)
// set config word
//__CONFIG( UNPROTECT | (FOSC1 | FOSC0) | BODEN);
__IDLOC(0x1234); // define ID locations
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?