Reverted the output of the I-commands change, they fall under G

This commit is contained in:
Paul van Tilburg 2012-01-09 23:41:13 +01:00
parent ed042efaf2
commit 88ec54a4da
1 changed files with 2 additions and 2 deletions

View File

@ -730,13 +730,13 @@ static int uart_thread(struct pt *pt)
{ {
case 'c': case 'c':
// get current value // get current value
Serial.print("I: c: "); Serial.print("G: Ic: ");
Serial.println(lightlevel_sample, Serial.println(lightlevel_sample,
DEC); DEC);
break; break;
case 'a': case 'a':
// get average // get average
Serial.print("I: a: "); Serial.print("G: Ia: ");
Serial.println(lightlevel_avg, Serial.println(lightlevel_avg,
DEC); DEC);
break; break;