From: <jo...@us...> - 2008-09-07 17:50:10
|
Revision: 309 http://mspsim.svn.sourceforge.net/mspsim/?rev=309&view=rev Author: joxe Date: 2008-09-07 17:50:08 +0000 (Sun, 07 Sep 2008) Log Message: ----------- fixed minor bug in telos node Modified Paths: -------------- mspsim/CHANGE_LOG.txt mspsim/se/sics/mspsim/platform/sky/TelosNode.java Modified: mspsim/CHANGE_LOG.txt =================================================================== --- mspsim/CHANGE_LOG.txt 2008-09-07 17:08:42 UTC (rev 308) +++ mspsim/CHANGE_LOG.txt 2008-09-07 17:50:08 UTC (rev 309) @@ -10,7 +10,7 @@ - fixed windows to accept double input and not only int input - corrected cycle count on some instructions - improved CC2420 emulation (thanks to Matt Thompson) -- added Telos platformincluding AT45DB flash memory chip (Matt Thompson) +- added Telos platform including AT45DB flash memory chip (Matt Thompson) 0.91 Modified: mspsim/se/sics/mspsim/platform/sky/TelosNode.java =================================================================== --- mspsim/se/sics/mspsim/platform/sky/TelosNode.java 2008-09-07 17:08:42 UTC (rev 308) +++ mspsim/se/sics/mspsim/platform/sky/TelosNode.java 2008-09-07 17:50:08 UTC (rev 309) @@ -104,7 +104,7 @@ } public String getName() { - return "TelosB"; + return "Telos"; } public void setupNodePorts(boolean loadFlash) { @@ -211,7 +211,7 @@ // A HACK for some "graphs"!!! DataChart dataChart = new DataChart("Duty Cycle", "Duty Cycle"); DataSourceSampler dss = dataChart.setupChipFrame(cpu); - dataChart.addDataSource(dss, "LEDS", stats.getDataSource("Tmote Sky", 0, OperatingModeStatistics.OP_INVERT)); + dataChart.addDataSource(dss, "LEDS", stats.getDataSource("Telos", 0, OperatingModeStatistics.OP_INVERT)); dataChart.addDataSource(dss, "Listen", stats.getDataSource("CC2420", CC2420.MODE_RX_ON)); dataChart.addDataSource(dss, "Transmit", stats.getDataSource("CC2420", CC2420.MODE_TXRX_ON)); dataChart.addDataSource(dss, "CPU", stats.getDataSource("MSP430 Core", MSP430.MODE_ACTIVE)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |