⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.h

📁 dsp2812上的零耗时键盘 c++源代码例子
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -