psyrendust / makecontroller

Automatically exported from code.google.com/p/makecontroller
0 stars 0 forks source link

XBEE_TX64 ApiId WRONG FRAME TYPE #20

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.Trying to send a 64 bit packet formatted for simple transmission.
2.
3.

What is the expected output? What do you see instead?

The expected output has a frame type of 0x10

Without changing the XBEE_TX64 value from 0x00 to 0x10 the frame type is
incorrect in the sent packet.
Found under enum XBeeApiId

What version of the product are you using? On what operating system?

XBEE ZIGBEE PRO SERIES 2 operating in API mode. Windows XP

Please provide any additional information below.
Not sure if this is the correct location to post this issue but hopefully
you found it if you are trying to solve it!!!

enum XBeeApiId
{ 
//  XBEE_TX64 = 0x00,               /**< An outgoing data packet with a
64-bit address. */ WRONG!

CORRECTION
enum XBeeApiId
{ 
//  XBEE_TX64 = 0x10,               /**< An outgoing data packet with a
64-bit address. */ Correct frame type for transmission.

Original issue reported on code.google.com by Jordan.P...@uvm.edu on 12 Jan 2010 at 4:14