main.h

来自「零耗时键盘源程序」· C头文件 代码 · 共 40 行

H
40
字号
#ifndef __DSP28XX_MAIN_H
#define __DSP28XX_MAIN_H

//#include "DSP28_Device.h"//不能在此包含头文件
//#include "DSP281x_Examples.h"   // DSP281x Examples Include File

#ifdef __cplusplus
extern "C"
{
#endif

//#include <cstring>
//#include <cstdio>

#include <string.h>

#include "DSP281x_Device.h"//应该在此包含头文件
#include "DSP281x_Examples.h"   // DSP281x Examples Include File

#include "class.h"
#include "timer.h"
#include "lcd.h"
#include "interrupt.h"
#include "keyboard.h"

extern class SystemObj System;
extern class TimerObj Timer;
extern class LcdObj Lcd;
extern class KeyboardObj Keyboard;

extern unsigned int LedKeyRegs;
extern unsigned int SpiRclkRegs;

#ifdef __cplusplus
}
#endif

#endif//__DSP28XX_MAIN_H

⌨️ 快捷键说明

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