bugfix: setting heap start to enable stack watch again

This commit is contained in:
fros4943 2009-01-23 15:32:24 +00:00
parent fe4cc83441
commit 04738e219d

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: MspMote.java,v 1.18 2008/12/04 14:03:41 joxe Exp $ * $Id: MspMote.java,v 1.19 2009/01/23 15:32:24 fros4943 Exp $
*/ */
package se.sics.cooja.mspmote; package se.sics.cooja.mspmote;
@ -245,6 +245,7 @@ public abstract class MspMote implements Mote {
MapEntry[] allEntries = map.getAllEntries(); MapEntry[] allEntries = map.getAllEntries();
myMemory = new MspMoteMemory(allEntries, myCpu); myMemory = new MspMoteMemory(allEntries, myCpu);
heapStartAddress = map.heapStartAddress;
myCpu.reset(); myCpu.reset();
} }