The collectview tool should use the example/collect code instead of examples/sky-shell code
This commit is contained in:
parent
eaa5d32cec
commit
eccf001029
|
@ -42,19 +42,19 @@
|
||||||
</copy>
|
</copy>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<condition property="sky-shell.exists">
|
<condition property="collect-view-shell.exists">
|
||||||
<available file="${dist}/sky-shell.ihex"/>
|
<available file="${dist}/collect-view-shell.ihex"/>
|
||||||
</condition>
|
</condition>
|
||||||
|
|
||||||
<target name="sky-shell.ihex" unless="sky-shell.exists" depends="init">
|
<target name="collect-view-shell.ihex" unless="collect-view-shell.exists" depends="init">
|
||||||
<exec dir="${contiki}/examples/sky-shell" executable="make">
|
<exec dir="${contiki}/examples/collect" executable="make">
|
||||||
<arg value="TARGET=sky"/>
|
<arg value="TARGET=sky"/>
|
||||||
<arg value="sky-shell.ihex"/>
|
<arg value="collect-view-shell.ihex"/>
|
||||||
</exec>
|
</exec>
|
||||||
<copy todir="${dist}" file="${contiki}/examples/sky-shell/sky-shell.ihex"/>
|
<copy todir="${dist}" file="${contiki}/examples/collect/collect-view-shell.ihex"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="dist" depends="jar,sky-shell.ihex">
|
<target name="dist" depends="jar,collect-view-shell.ihex">
|
||||||
<copy todir="${dist}" file="collect-init.script"/>
|
<copy todir="${dist}" file="collect-init.script"/>
|
||||||
<mkdir dir="${dist}/tools"/>
|
<mkdir dir="${dist}/tools"/>
|
||||||
<copy todir="${dist}/tools">
|
<copy todir="${dist}/tools">
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: CollectServer.java,v 1.4 2010/11/12 17:52:02 nifi Exp $
|
* $Id: CollectServer.java,v 1.5 2010/12/07 22:46:13 adamdunkels Exp $
|
||||||
*
|
*
|
||||||
* -----------------------------------------------------------------
|
* -----------------------------------------------------------------
|
||||||
*
|
*
|
||||||
|
@ -34,8 +34,8 @@
|
||||||
*
|
*
|
||||||
* Authors : Joakim Eriksson, Niclas Finne
|
* Authors : Joakim Eriksson, Niclas Finne
|
||||||
* Created : 3 jul 2008
|
* Created : 3 jul 2008
|
||||||
* Updated : $Date: 2010/11/12 17:52:02 $
|
* Updated : $Date: 2010/12/07 22:46:13 $
|
||||||
* $Revision: 1.4 $
|
* $Revision: 1.5 $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package se.sics.contiki.collect;
|
package se.sics.contiki.collect;
|
||||||
|
@ -105,7 +105,7 @@ public class CollectServer implements SerialConnectionListener {
|
||||||
public static final String SENSORDATA_FILE = "sensordata.log";
|
public static final String SENSORDATA_FILE = "sensordata.log";
|
||||||
public static final String CONFIG_DATA_FILE = "collect-data.conf";
|
public static final String CONFIG_DATA_FILE = "collect-data.conf";
|
||||||
public static final String INIT_SCRIPT = "collect-init.script";
|
public static final String INIT_SCRIPT = "collect-init.script";
|
||||||
public static final String FIRMWARE_FILE = "sky-shell.ihex";
|
public static final String FIRMWARE_FILE = "collect-view-shell.ihex";
|
||||||
|
|
||||||
/* Categories for the tab pane */
|
/* Categories for the tab pane */
|
||||||
private static final String MAIN = "main";
|
private static final String MAIN = "main";
|
||||||
|
|
Loading…
Reference in a new issue