added method for setting timedrift

This commit is contained in:
fros4943 2007-06-19 09:59:19 +00:00
parent ef1588cd83
commit 66e562f2c0

View file

@ -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: ContikiClock.java,v 1.2 2007/01/09 10:05:19 fros4943 Exp $ * $Id: ContikiClock.java,v 1.3 2007/06/19 09:59:19 fros4943 Exp $
*/ */
package se.sics.cooja.contikimote.interfaces; package se.sics.cooja.contikimote.interfaces;
@ -83,13 +83,20 @@ public class ContikiClock extends Clock implements ContikiMoteInterface {
moteMem.setIntValueOf("simCurrentTime", newTime); moteMem.setIntValueOf("simCurrentTime", newTime);
} }
public void setDrift(int timeDrift) {
this.timeDrift = timeDrift;
}
public int getTime() { public int getTime() {
return moteMem.getIntValueOf("simCurrentTime"); return moteMem.getIntValueOf("simCurrentTime");
} }
public void doActionsBeforeTick() { public void doActionsBeforeTick() {
// Update core time to correspond with the simulation time // Update core time to correspond with the simulation time
setTime((int) mote.getSimulation().getSimulationTime() + timeDrift); int moteTime = mote.getSimulation().getSimulationTime() + timeDrift;
if (moteTime > 0)
setTime(moteTime);
} }
public void doActionsAfterTick() { public void doActionsAfterTick() {