?? timer.h
字號:
#include "main.h"
#ifdef __IAR_SYSTEMS_ICC__
#ifndef _SYSTEM_BUILD
#pragma system_include
#endif
#endif
#ifndef __MSP430_TIMER_H
#define __MSP430_TIMER_H
#ifdef __cplusplus
extern "C"
{
#endif
class TimerObj;
class TimerObj
{
private:
public:
TimerObj(void);
void Init(void);
void TimerAInit(void);
void TimerBInit(void);
public:
__no_init volatile unsigned int CountA;
__no_init volatile unsigned int CountB;
};
#ifdef __cplusplus
}
#endif
#endif//__MSP430_TIMER_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -