-
Notifications
You must be signed in to change notification settings - Fork 11
Release Notes 0.8
The 0.8 release of Testbed Runtime implements some long-awaited features and some requirements of the SmartSantander project. Please see the full list of issues closed here. For a description of the main changes, see below.
Important: the automatic configuration reloading feature introduces changes to the configuration file format that requires testbed providers to update their configuration files. Please check the documentation below!
Testbed Runtime is now able to detect sensor node devices being attached and detached and to reconnect to the nodes at runtime. For this feature to work the iWSN configuration file (conf/tr.iwsn-testbed.xml
in the assembly) must be updated as follows: Assume you have a gateway host with both an iSense as well as a Telos B device attached. Then the relevant part of the configuration file in 0.7.2 looked as follows:
<nodes id="gatewayXX.yourtestbeddomain.org">
...
<applications>
...
<application factoryclass="de.uniluebeck.itm.tr.runtime.wsnapp.WSNDeviceAppFactory" name="WSNDeviceApp">
<ns4:wsnDevice xmlns:ns4="http://itm.uniluebeck.de/tr/runtime/wsnapp/xml">
<urn>urn:wisebed:uzl1:0x221e</urn>
<type>telosb</type>
<usbchipid>XBUNEJDX</usbchipid>
</ns4:wsnDevice>
</application>
<application factoryclass="de.uniluebeck.itm.tr.runtime.wsnapp.WSNDeviceAppFactory" name="WSNDeviceApp">
<ns4:wsnDevice xmlns:ns4="http://itm.uniluebeck.de/tr/runtime/wsnapp/xml">
<urn>urn:wisebed:uzl1:0x211c</urn>
<type>isense48</type>
</ns4:wsnDevice>
</application>
...
</applications>
...
</nodes>