📄 class.h
字号:
#include "main.h"
#ifndef __DSP5402_CLASS_H
#define __DSP5402_CLASS_H
#ifdef __cplusplus
extern "C"
{
#endif
class SystemObj;
class SystemObj
{
public:
SystemObj(void);
void Init(void);
private:
unsigned char Count;
public:
volatile unsigned int RamTest;
volatile union
{
unsigned int all;
struct
{
unsigned int b0: 1;//
unsigned int b1_15: 15;//
}bit;
}WorkFlag;
};
extern SystemObj System;
#ifdef __cplusplus
}
#endif
#endif//__DSP5402_CLASS_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -