Xctu For Mac

Posted on  by 

The XBee is Digi's IEEE 802.15.4 product, some of which are ZigBee compatible.

Before using the XBee Mobile App, you’ll want to activate Bluetooth on your Digi XBee3 and assign it a password using the XCTU application on a Windows, MacOS or Linux computer. Download XCTU onto your computer and install it. Mount an XBee3 radio onto the XBIB evaluation board and connect it to the computer. X-CTU is a program designed for configuring and testing MaxStream radio modems. Available for both Windows and Mac. Plug your first XBee into an Explorer module, and connect to your computer’s USB port via a USB cable. Open XCTU and click “Discover devices.” Select the port to be scanned. Xbee+ArduinoとXbee+Macを繋ぐ方法(つまづきメモ) XBee+ArduinoとXBee+Macを繋ぐ方法; 4月 (1) 3月 (1) 2012 (6) 10月 (1) 5月 (2) 3月 (1) 1月 (2) 2011 (4) 11月 (2) 8月 (1) 7月 (1).

  • XBee Pro 60mW PCB Antenna - Series 1 (802.15.4) WRL-11216 37.95 ea. (SparkFun) This is what I have
  • ds_xbeemultipointmodules.pdf XBee Pro Spec sheet from November, 2015

The XBee Pro S1 is not ZigBee, though the XBee ZigBee modules are ZigBee compatible.

The two XBee Pros that I have are plugged in to USB boards. Either one seems to work.

  • SparkFun XBee Explorer Dongle WRL-11697 $24.95 ea. (SparkFun) Plugs in to a Mac just fine.
    • Uses the 'FT231X USB-to-Serial converter'
      • There are two types of drivers: 'Virtual COM Port (VCP) drivers and direct (D2XX) drivers. The VCP driver emulates a standard PC serial port such that the USB device may be communicated with as a standard RS232 device The D2XX driver allows direct access to a USB device via a DLL interface.' Since we are using RxTx to communicate with a serial port, we would want the VCP driver.
  • UARTSBee $19.95 ea. (Seeedstudio.com) Has a compact USB connector, so it requires a cable.

The Ptolemy II tree includes an implementation of RXTX (at least for MacOS) and a SerialPort actor that provides low-level access to serial port devices, including the XBee devices. If you plug in the XBee device into your USB port, two new serial devices will be discovered by the SerialPort actor. On my machine, they are called '/dev/tty.usbserial-DA01LK3S' and '/dev/cu.usbserial-DA01LK3S'. I don't know what the difference is, but either worked for me.

The SerialPort actor accepts as input a unsigned byte array and produces as output an unsigned byte array. If you send to its input port a sequence of two strings (convert to unsigned byte array using StringToUnsignedByteArray) '+++' followed by 'ATSHr' within 3 seconds, then you will be returned the upper half of the address of your XBee device, per the AT command instructions (Note that these instructions are self contradictory... the second mention of the three second wait is incorrect. The first one is correct). Note that 'r' is a Windows-style return character. Using 'n' does not work. On my device, this returns '13A200' (a hex number representing the upper half of the address of the device). Adding 'ATSLr' to the commands returns '40D5FF39', the lower half of the address. So the address appears to be a 56 bit address.

Note that the SerialPort actor may produce the output in multiple firings. I.e., it may produce '40' followed by 'D5FF39' or '40D' followed by '5FF39' (or any other partitioning).

The X-CTU Software runs on the Mac or other host. The software is used to configure the XBee and has a simple console application.

  • XBeeProfile10ee.xml The profile that was saved from X-CTU.

Oddly, I could not get X-CTU 6.3.0 Build IS 20141110-08 to work with Mac OS X 10.7.5. The problem was that clicking on Discover Devices did not find my port. The same two XBees are discovered just fine under 10.11.1.

XBCTU Under Ubuntu Studio

  1. Connect to the SwarmBox using ssh -X -l sbuser swarmnuc001.eecs.berkeley.edu
  2. See HOW-TO-Install-XCTU-in-Linux and download XCTU for x64 and install
  3. sudo usermod -a -G dialout sbuser
  4. Invoke /opt/Digi/XCTU-NG/app

Xctu For Macbook Pro

XCTU: Ubuntu: Permission denied:

com.digi.xbee.exceptions.XBeeException: Error initializing XBee device parameters /dev/ttyS0: SerOpenPort failed: Permission denied
Pro

Solution:

For

Then, as sbuser, log out and log back in again. As sbuser, you should see:

buser@swarmnuc001:~$ groups
admin dialout
sbuser@swarmnuc001:~$ ls-l/dev/ttyUSB1
crw-rw---- 1 root dialout 188, 1 Dec 915:16/dev/ttyUSB1
sbuser@swarmnuc001:~$

XCTU Won't Start under Ubuntu

Under Ubuntu 14.04.3 LTS, XCTU failed to start because I accidentally downloaded the x86 version instead of the x64 version, below is the error message

sbuser@swarmnuc001:~$ /opt/Digi/XCTU-NG/app
App:
An error has occurred. See the log file
/home/sbuser/.eclipse/13786435/configuration/1449687334319.log.
sbuser@swarmnuc001:~$

The error message is:

java.lang.UnsatisfiedLinkError: Could not load SWT library. Reasons:
/opt/Digi/XCTU-NG/configuration/org.eclipse.osgi/bundles/146/1/.cp/libswt-pi-gtk-4236.so: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory
no swt-pi-gtk in java.library.path
/home/sbuser/.swt/lib/linux/x86/libswt-pi-gtk-4236.so: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory
Can't load library: /home/sbuser/.swt/lib/linux/x86/libswt-pi-gtk.so

As far as a Java Interface to the XBee, I see two approaches:

  1. Use the XBeeJavaLibrary
  2. Use our own raw serial interface
  • https://github.com/digidotcom/XBeeJavaLibrary - Mozilla, LGPL and MIT Licenses
    • http://www.digi.com/blog/community/official-xbee-java-library/ - Announcement
    • https://docs.digi.com/display/XBJLIB/XBee+Java+Library - docs
    • https://github.com/digidotcom/XBeeJavaLibrary/releases - Where the Zip file is located

The docs describe how to create an Eclipse project that uses

Xctu
  • 'rxtx-2.2.jar: The RXTX library that provides serial communication in Java.'
  • 'slf4j-api-1.7.12.jar: The Simple Logging Facade for Java (SLF4J) for logging.'
  • 'slf4j-nop-1.7.12.jar: SLF4J binding for NOP, silently discarding all logging.'
  • 'RXTX native library that depends on your PC operating system and the installed Java Virtual Machine'

The Building your first XBee Java application example worked for me under Mac OS X 10.11.1.

Xctu For Mac Os

The source code for MainApp.java is below:

packagecom.digi.xbee.example;
importcom.digi.xbee.api.XBeeDevice;
importcom.digi.xbee.api.exceptions.XBeeException;
publicclass MainApp {
/* Constants */
// TODO Replace with the port where your sender module is connected to.
privatestaticfinalString PORT ='COM1';
// TODO Replace with the baud rate of your sender module.
privatestaticfinalint BAUD_RATE =9600;
privatestaticfinalString DATA_TO_SEND ='Hello XBee World!';
publicstaticvoid main(String[] args){
XBeeDevice myDevice =new XBeeDevice(PORT, BAUD_RATE);
byte[] dataToSend = DATA_TO_SEND.getBytes();
try{
myDevice.open();
System.out.format('Sending broadcast data: '%s', newString(dataToSend));
myDevice.sendBroadcastData(dataToSend);
System.out.println(' >> Success');
}catch(XBeeException e){
System.out.println(' >> Error');
e.printStackTrace();
System.exit(1);
}finally{
myDevice.close();
}
}
}

What this does is construct an XBeeDevice, open() it and then sendBroadCastData().

Xctu for mac os

The summary is that open() creates a DataReader (JavaDoc, Source) that is a Thread that reads from the serial port using IConnectionInterface (JavaDoc, Source)

  • XBeeDevice Javadoc, Source

See XBeeJavaAnalysis.

This does not totally work, but at least the XBee answers

  1. Use XCTU to reset the XBee to the defaults.
  2. Note the serial port that is used.
  3. Exit XCTU so that it is not using the port
  4. Update your Ptolemy Tree
  5. Run $PTII/bin/vergil $PTII/ptolemy/actor/lib/io/comm/demo/SerialConsole/SerialConsole.xml
  6. In Vergil, double click on the SerialPort actor and then select the appropriate serial port.
  7. Run the model
  8. Type three + signs: +++, hit Return to send the three plus signs.
  9. The XBee should return OK. However, the ATID command does not work?
    Welcome to the Ptolemy Serial Console.
    >> +++
    OK
    >> ATID
  10. See XBee AT Commands (Sparkfun) for details. Note that we have hit return to send the characters. The SerialConsole demo should probably be modified to send characters as they are typed.

See also XBee/XBee-Pro OEM RF Modules Product Manual v1.xAx - 802.15.4 Protocol For OEM RF Module Part Numbers: XB24-...-001, XBP24-...-001

When trying to run the XBee Java example at https://docs.digi.com/display/XBJLIB/Building+your+first+XBee+Java+application with nrjavaserial, the following error appeared:


Exception in thread 'main' java.lang.NoSuchMethodError:
gnu.io.CommPortIdentifier.open(Ljava/lang/String;I)Lgnu/io/CommPort;
at
com.digi.xbee.api.connection.serial.SerialPortRxTx.open(SerialPortRxTx.java:167)
at com.digi.xbee.api.XBeeDevice.open(XBeeDevice.java:195)
at ptolemy.actor.lib.jjs.modules.xbee.XBeeHello.main(XBeeHello.java:20)

The error message in question is:

gnu.io.CommPortIdentifier.open(Ljava/lang/String;I)Lgnu/io/CommPort;

http://rxtx.qbang.org/pub/rxtx/rxtx-2.1-7/src/CommPortIdentifier.java, which is similar to what is in XBeeJava has:

publicsynchronized CommPort open(String TheOwner, int i)

https://github.com/NeuronRobotics/nrjavaserial/blob/86b44454cebc7ba29c2032e904cfbe4eb098b841/src/main/java/gnu/io/CommPortIdentifier.java, which is what is in nrjavaserial has:

However, RXTXPort extends SerialPort which extends CommPort, so this should work (I think). For reference, Line 167 of SerialPortRxTx.java is

serialPort =(RXTXPort)portIdentifier.open(PORT_ALIAS +' '+ port, receiveTimeout);

To recompile the XBee Java Library, I edited the pom.xml file and commented out the rxtx references and added references to nrjavaserial.

<dependencies>
<dependency>
<groupId>com.neuronrobotics</groupId>
<artifactId>nrjavaserial</artifactId>
<version>3.11.0</version>
</dependency>
<!--
<dependency>
<groupId>org.rxtx</groupId>
<artifactId>rxtx</artifactId>
<version>${rxtx.version}</version>
</dependency>
<dependency>
<groupId>org.rxtx</groupId>
<artifactId>rxtx-native</artifactId>
<version>${rxtx.version}</version>
<classifier>${build.type}</classifier>
</dependency>
-->

To build:

Macbook
cd ~/src/XBeeJavaLibrary/
mvn3 install
cp target/library/xbjlib-1.1.0.jar $PTII/lib/xbjlib-1.1.0.nrjavaserial.jar

Note that at build time for the xbjlib library, the reference to com.neuronrobotics uses an older version of nrjavaserial that does not have the Apple-specific fix needed in RxTx Hanging. However, at runtime, we use a version of nrjavaserial that has the fix.

  • https://github.com/andrewrapp/xbee-api - Old

See RxTx for information about the RxTx Java Serial Port Interface.

Download from Support tab

PC-based Configuration Utility that makes configuring and operating Roboteq's Motor Controllers much more intuitive by using pull-down menus, buttons, and sliders. Free version with limited scripting size. (Download from Support tab)

DESCRIPTION

Xctu For Macbook

Roborun+ is a PC utility that allows users to configure their Roboteq’s motor controllers. Using the utility, you can alter the controller’s configuration parameters in addition to monitor the operating state of the controller. The utility provides means of diagnostics through rich charts and logs. Through the utility, you can monitor the commands/responses flow through USB, RS232, or TCP. The utility provides means of updating the controller’s firmware through the UI with few mouse clicks. In addition to that, the utility provides a way for writing, compiling, and uploading user-defined script through a WYSWYG script editor integrated into the utility. The utility can be downloaded free of charge.

Coments are closed