Node.js (on Ubuntu) uses the XBee API library as the ZigBee coordinator API to send data to XBee as ZigBee router AT every one minute. It's fine for 10 minutes, but after that it reports an error:
Error: Checksum Mismatch
How do I solve this problem?
var util = require('util');
var SerialPort = require('serialport').SerialPort;
var xbee_api = require('xbee-api');
var C = xbee_api.constants;
var xbeeAPI = new xbee_api.XBeeAPI({
api_mode: 1
});
var serialport = new SerialPort("COM19", {
baudrate: 57600,
parser: xbeeAPI.rawParser()
});
serialport.on("open", function() {
var frame_obj = {
type: 0x10, // xbee_api.constants.FRAME_TYPE.ZIGBEE_TRANSMIT_REQUEST
id: 0x01, // Optional, nextFrameId() is called per default
destination64: "0013a200400a0127",
destination16: "fffe", // Optional, "fffe" is default
broadcastRadius: 0x00, // Optional, 0x00 is default
options: 0x00, // Optional, 0x00 is default
data: "TxData0A" // Can either be a string or byte array.
};
serialport.write(xbeeAPI.buildFrame(frame_obj));
});
// All frames parsed by the XBee will be emitted here
xbeeAPI.on("frame_object", function(frame) {
console.log(">>", frame);
});
Is it possible to print (to stdout) a hex dump of each frame sent, and the checksum frame so you can see which frame is flagged with the error? Can you monitor the serial line in some way to see what you're actually sending? How is the XBee module connected to the host? Does it use a long serial cable that could be encountering noise?
Do you always get the error after 10 packets, or does it vary? If you change the baud rate to 9600 or 115200, does the error rate stay the same, become more frequent or go away?
You probably shouldn't hard code the frame ID to be the same on every packet -- it could be contributing to the problem, and you won't know which frame had the checksum error, if they're all using the same ID. The error frame includes a field for the frame ID that generated the error.