Some of your code is most certainly redundant, but I can only guess that that is actually a problem. Also note missing comma. Instead of
Serial.println("DATA,TIMER");
Serial.println(value);
Serial.println(',');
You might try
Serial.println("DATA,TIMER,");
Serial.println(value);