/** * Copyright (c) 2008 Andrew Rapp. All rights reserved. * * This file is part of XBee-API. * * XBee-API is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * XBee-API is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with XBee-API. If not, see . */ package com.rapplogic.xbee.examples.wpan; import org.apache.log4j.Logger; import org.apache.log4j.PropertyConfigurator; import com.rapplogic.xbee.api.ApiId; import com.rapplogic.xbee.api.XBee; import com.rapplogic.xbee.api.XBeeAddress16; import com.rapplogic.xbee.api.XBeePacket; import com.rapplogic.xbee.api.XBeeResponse; import com.rapplogic.xbee.api.wpan.TxRequest16; import com.rapplogic.xbee.api.wpan.TxRequest64; import com.rapplogic.xbee.api.wpan.TxStatusResponse; /** * Sends a TX Request every 5000 ms and waits for TX status packet. * If the radio is sending samples it will continue to wait for tx status. * * @author andrew * */ public class ApiSenderExample { private final static Logger log = Logger.getLogger(ApiSenderExample.class); private ApiSenderExample() throws Exception { XBee xbee = new XBee(); final int sleep = 5000; int count = 0; int errors = 0; int ackErrors = 0; int ccaErrors = 0; int purgeErrors = 0; long now; try { // my coordinator xbee.open("COM12", 9600); // xbee.open("/dev/tty.usbserial-A6005v5M", 57600); while (true) { // log.debug("Sending count " + count); // XBeeResponse response = xbee.sendTxRequest16(destination, 0x0a, payload); // int[] payload = new int[] {1,2,3,4,5,6,7,8}; // to verify correct byte escaping, we'll send a start byte int[] payload = new int[] { XBeePacket.SpecialByte.START_BYTE.getValue() }; // specify the remote XBee 16-bit MY address XBeeAddress16 destination = new XBeeAddress16(0x01, 0x00); TxRequest16 tx = new TxRequest16(destination, payload); // or send a TX64 (same thing except we are addressing by SH+SL address) // XBeeAddress64 destination = new XBeeAddress64(0, 0x13, 0xa2, 0, 0x40, 0x08, 0xb4, 0x8f); // TxRequest64 tx2 = new TxRequest64(destination64, payload); now = System.currentTimeMillis(); xbee.sendAsynchronous(tx); XBeeResponse response = null; while (true) { // blocks until we get response response = xbee.getResponse(); if (response.getApiId() != ApiId.TX_STATUS_RESPONSE) { log.debug("expected tx status but received " + response); } else { // log.debug("got tx status"); if (((TxStatusResponse) response).getFrameId() != tx.getFrameId()) { throw new RuntimeException("frame id does not match"); } if (((TxStatusResponse) response).getStatus() != TxStatusResponse.Status.SUCCESS) { errors++; if (((TxStatusResponse) response).isAckError()) { ackErrors++; } else if (((TxStatusResponse) response).isCcaError()) { ccaErrors++; } else if (((TxStatusResponse) response).isPurged()) { purgeErrors++; } log.debug("Tx status failure with status: " + ((TxStatusResponse) response).getStatus()); } else { // success log.debug("Success. count is " + count + ", errors is " + errors + ", in " + (System.currentTimeMillis() - now) + ", ack errors " + ackErrors + ", ccaErrors " + ccaErrors + ", purge errors " + purgeErrors); } count++; break; } } Thread.sleep(sleep); } } finally { xbee.close(); } } public static void main(String[] args) throws Exception { // init log4j PropertyConfigurator.configure("log4j.properties"); new ApiSenderExample(); } }