diff --git a/tools/cooja/apps/avrora/src/se/sics/cooja/avrmote/AvrMoteMemory.java b/tools/cooja/apps/avrora/src/se/sics/cooja/avrmote/AvrMoteMemory.java index 891ebacd8..b0cff21de 100644 --- a/tools/cooja/apps/avrora/src/se/sics/cooja/avrmote/AvrMoteMemory.java +++ b/tools/cooja/apps/avrora/src/se/sics/cooja/avrmote/AvrMoteMemory.java @@ -170,4 +170,17 @@ public class AvrMoteMemory implements MoteMemory, AddressMemory { public boolean variableExists(String varName) { return memoryMap.getLocation(varName) != null; } + + public boolean addMemoryMonitor(int address, int size, MemoryMonitor mm) { + logger.warn("Not implemented"); + return false; + } + + public void removeMemoryMonitor(int address, int size, MemoryMonitor mm) { + } + + public int parseInt(byte[] memorySegment) { + logger.warn("Not implemented"); + return 0; + } } diff --git a/tools/cooja/apps/avrora/src/se/sics/cooja/avrmote/MicaZMote.java b/tools/cooja/apps/avrora/src/se/sics/cooja/avrmote/MicaZMote.java index 15a7b6420..5f8c155a8 100644 --- a/tools/cooja/apps/avrora/src/se/sics/cooja/avrmote/MicaZMote.java +++ b/tools/cooja/apps/avrora/src/se/sics/cooja/avrmote/MicaZMote.java @@ -270,9 +270,4 @@ public class MicaZMote extends AbstractEmulatedMote implements Mote { public String toString() { return "MicaZ " + getID(); } - - public MemoryMonitor createMemoryMonitor(MemoryEventHandler meh) { - logger.fatal("Not implemented"); - return null; - } }