为什么 ZStack_CapabilityInfo_t 结构没有"allocAddr"位、
/** Structure defines the Capabilities Information bit field. */
typedef struct _zstack_capabilityinfo_t
{
/** True if the device is a PAN Coordinator */
bool panCoord;
/** True if the device is a full function device (FFD) */
bool ffd;
/** True if the device is mains powered */
bool mainsPower;
/** True if the device's RX is on when the device is idle */
bool rxOnWhenIdle;
/** True if the device is capable of sending and receiving secured frames
*/
bool security;
} zstack_CapabilityInfo_t;
但 ApiMac_capabilityInfo_t 结构具有它吗?
typedef struct _apimac_capabilityinfo
{
/*! True if the device is a PAN Coordinator */
bool panCoord;
/*! True if the device is a full function device (FFD) */
bool ffd;
/*! True if the device is mains powered */
bool mainsPower;
/*! True if the device's RX is on when the device is idle */
bool rxOnWhenIdle;
/*! True if the device is capable of sending and receiving secured frames
*/
bool security;
/*!
True if allocation of a short address in the associate procedure
is needed.
*/
bool allocAddr;
} ApiMac_capabilityInfo_t;
这是否意味着我无法处理中的 caped_alLOC_ADDR 位
案例 zstackmsg_CmdIDs_ZDO_DEVICE_INSAFLEVED:
{
zstackmsg_zdoDeviceAnnounced_t * Pind;
因为 ZStack_CapabilityInfo_t 结构没有该位?
尽管我看到设备通知消息中的位已设置。

但我在 zstackmsg_CmdIDs_ZDO_DEVICE_RECORELETE 事件中接收 Capinfo = 0x0E、最高位未设置。
为什么不包含它?