Hello,
I already developped a WSN with a ZigBee mesh network with other microcontrollers, but I got some interest about WSNMonitor and the AVR devices.
I wish to use the WSNMonitor with my devices to check if it works as I imagine, but I can't find any documentation where it shows me the messages that I should send by the serial...
I'm trying to make a initial test with 2 usb-serial cables connected between each other and a C++ program to send the data to WSNMonitor...
The messages that I tryed to send (in hex) are the following:
0x10 0x02 0x11 0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x10 0x03 (format of identity_ack.xml)
(SOF) (Msg Type) (ID Status) (Full Address) (EOF)
0x10 0x02 0x10 0x10 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x0F 0x0F 0x0F 0x0F 0x10 0x03 (fomart of identity.xml)
(SOF) (Msg Type) (Full Address) (Duration) (Period) (EOF)
The bytes of SOF, EOF and the repeat of the 0x10 was based on WSNUARTManager.c file. The other values are random, just trying to respect the format of the protocols files.
Anybody can help me?
Maybe someone that already got the WSNMonitor to work and know the messages sent from the coordinator to the application and could share this info would be of great help.