CONNECTION_STATUS Union

MiWi Development Environment

MiWi(TM) Development Environment Help
CONNECTION_STATUS Union
C
typedef union __CONNECTION_STATUS {
  BYTE Val;
  struct _CONNECTION_STAUTS_bits {
    BYTE RXOnWhenIdle : 1;
    BYTE directConnection : 1;
    BYTE longAddressValid : 1;
    BYTE shortAddressValid : 1;
    BYTE FinishJoin : 1;
    BYTE isFamily : 1;
    BYTE filler : 1;
    BYTE isValid : 1;
  } bits;
} CONNECTION_STATUS;
Description

Status information of the connected peer information 

This structure contains the information regarding the status of the connected peer device.

Members
Members 
Description 
BYTE RXOnWhenIdle : 1; 
1 = transceiver always on, 0 = transceiver sleeps when idle 
BYTE directConnection : 1; 
1 = can talk to this device directly, 0 = must route to this device 
BYTE longAddressValid : 1; 
1 = long address valid, 0 = long address unknown 
BYTE shortAddressValid : 1; 
1 = short address valid, 0 = short address unknown 
BYTE FinishJoin : 1; 
1 = already finish joining procedure, 0 = in the process of join 
BYTE isFamily : 1; 
1 = family member (parent/child), 0 = not family 
BYTE isValid : 1; 
1 = this entry is valid, 0 = this entry is not valid 
Microchip My Application xx.yy - [Jan 1, 2009]
Copyright © 2009 Microchip Technology, Inc.  All rights reserved.