Index: trunk/tools/examine_burntool_pcontrol.pl
===================================================================
--- trunk/tools/examine_burntool_pcontrol.pl	(revision 25562)
+++ trunk/tools/examine_burntool_pcontrol.pl	(revision 26528)
@@ -17,7 +17,8 @@
     print STDERR "         status of the processing.  On the OTA grid:\n";
     print STDERR "                  _             Blank chip\n";
-    print STDERR "                  N             Null/zero value for burntool_state. No burntool attempted.\n";
-    print STDERR "                  O             -1 value for burntool_state. Burntool is running.\n";
-    print STDERR "                  E             -2 value for burntool_state. Error!\n";
+    print STDERR "                  O             Null/zero value for burntool_state. No burntool attempted (yet).\n";
+    print STDERR "                  P             -1 value for burntool_state. Burntool is running.\n";
+    print STDERR "                  E             -2 value for burntool_state. Error! (modified raw pixels)\n";
+    print STDERR "                  X             -3 value for burntool_state. Burntool segfaulted on this chip.\n";
     print STDERR "                  B             Current version value for burntool_state. Burntool succeeded.\n";
     print STDERR "                  b             Old version value for burntool_state. Burntool needs to be rerun.\n";
@@ -51,17 +52,17 @@
 	$burncount++;
     }
-    elsif ($burntool_state == -1) {
+    elsif ($burntool_state == -1) {   # processing
 	$char = '[01;33mP[m';
     }
-    elsif ($burntool_state == 0) {
+    elsif ($burntool_state == 0) {    # has not been processed yet
 	$char = '[31mO[m';
     }
-    elsif ($burntool_state == -2) {
+    elsif ($burntool_state == -2) {   # modified pixel data
 	$char = '[35;01;44;05mE[m';
     }
-    elsif ($burntool_state == -3) {
+    elsif ($burntool_state == -3) {   # previous burntool segfaulted.
 	$char = '[34mX[m';
     }
-    else {
+    else {                            # old version
 	$char = '[32mb[m';
     }
@@ -128,5 +129,4 @@
 
     $data_ref = $db->selectall_arrayref( $sth );
-
 
     # Reset
