removed some debug printout and updated CHANGELOG

git-svn-id: https://mspsim.svn.sourceforge.net/svnroot/mspsim/mspsim@364 23d1a52b-0c3c-0410-b72d-8f29ab48fe35
This commit is contained in:
joxe 2008-10-12 20:53:54 +00:00
parent 3aa0316335
commit 225a783aac
2 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ Changes:
- improved correctness of timer when reconfiguring CPU clock speed (MCLK)
- improved interrupt handling in MSP430 core
- added CLI command printcalls that prints all function calls
- fixed buffering of serial input in GUI to avoid freezing AWT.
0.93
Changes:

View File

@ -206,14 +206,14 @@ public class SHT11 extends Chip {
if (bitCnt == 8) {
// All bits are written!
state = ACK_WRITE;
System.out.println("Wrote byte: " + output[writePos]);
if (DEBUG) System.out.println("Wrote byte: " + output[writePos]);
writePos++;
}
}
break;
case ACK_WRITE:
if (c == 'C' && dataHi) {
System.out.println("*** NO ACK???");
if (DEBUG) System.out.println("*** NO ACK???");
reset(0);
}
break;
@ -233,7 +233,7 @@ public class SHT11 extends Chip {
break;
case ACK_WRITE:
if (c == 'D') { // if D goes back high - then we are done here!!!
System.out.println("ACK for byte complete...");
if (DEBUG) System.out.println("ACK for byte complete...");
if (writePos < writeLen) {
state = WRITE_BYTE;
writeData = output[writePos];