mirror of https://github.com/contiki-ng/mspsim
updated changelog before release
git-svn-id: https://mspsim.svn.sourceforge.net/svnroot/mspsim/mspsim@352 23d1a52b-0c3c-0410-b72d-8f29ab48fe35
This commit is contained in:
parent
bc2cabbf5f
commit
3af1e7b858
|
|
@ -6,6 +6,10 @@ Changes:
|
|||
- fixed status register update bug (byte/word problem)
|
||||
- improved CC2420 implementation (including RSSI_VALID flag)
|
||||
- added SHT11 implementation for Tmote Sky
|
||||
- added I/O ports -> timer capture functionality
|
||||
- added SFD capture interrupt support for CC2420
|
||||
- improved correctness of timer when reconfiguring CPU clock speed (MCLK)
|
||||
|
||||
|
||||
0.93
|
||||
Changes:
|
||||
|
|
|
|||
|
|
@ -65,10 +65,17 @@ public class SimpleProfiler implements Profiler {
|
|||
}
|
||||
|
||||
public void profileCall(MapEntry entry, long cycles) {
|
||||
// System.out.println("Call at: " + Utils.hex16(reg[PC]));
|
||||
if (callStack[cSP] == null) {
|
||||
callStack[cSP] = new CallEntry();
|
||||
}
|
||||
|
||||
// String s = "";
|
||||
// for (int i = 0; i < cSP; i++) {
|
||||
// s += " ";
|
||||
// }
|
||||
// System.out.println(s + "Call to: " + entry);
|
||||
|
||||
|
||||
callStack[cSP].function = entry;
|
||||
callStack[cSP].calls = 0;
|
||||
callStack[cSP++].cycles = cycles;
|
||||
|
|
|
|||
Loading…
Reference in New Issue