📄 am.h
字号:
#ifndef AM_H
#define AM_H
// These are the right types, but ncc currently does not
// like parameters being network types
typedef nx_uint8_t nx_am_id_t;
typedef nx_uint8_t nx_am_group_t;
typedef nx_uint16_t nx_am_addr_t;
typedef uint8_t am_id_t;
typedef uint8_t am_group_t;
typedef uint16_t am_addr_t;
enum {
AM_BROADCAST_ADDR = 0xffff,
};
#ifndef DEFINED_TOS_AM_GROUP
#define DEFINED_TOS_AM_GROUP 0x22
#endif
#ifndef DEFINED_TOS_AM_ADDRESS
#define DEFINED_TOS_AM_ADDRESS 1
#endif
enum {
TOS_AM_GROUP = DEFINED_TOS_AM_GROUP,
TOS_AM_ADDRESS = DEFINED_TOS_AM_ADDRESS
};
#define UQ_AMQUEUE_SEND "amqueue.send"
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -