?? tempmon.h
字號:
/*
* TempMon.h - A header file containing structures for the Temperature Monitor application
*
* @author Geoff Martin
* @date 18th April 2004
* @version 1.0
*/
enum
{
TIMER_RATE = 5000, // Send a message every 5 seconds
AM_TEMPMONMSG = 10,
};
typedef struct TempMonMsg
{
uint16_t address;
uint32_t timestamp;
uint16_t reading;
} __attribute__ ((packed)) TempMonMsg;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -