PLX-DAQ version 2 - now with 64 bit support! (and further new features)

Net_Devil this is great work you have done. I'm having trouble figuring out how to add more analog channels to the PLX-DAQ v2.
Arduino code:
oid loop() {
milli_time = millis();
voltTC = 5.000 * analogRead(A0) / 1024.000;
voltTH = 5.000 * analogRead(A1) / 1024.000;
voltpH = 5.000 * analogRead(A2) / 1024.000;
Serial.print("DATA,TIME,");
Serial.print(milli_time);
Serial.print(",");
Serial.println(voltTC);
Serial.print(",");
Serial.println(voltTH);
Serial.print(",");
Serial.println(voltpH);
//Serial.print(",");

delay(1000);

Is there anything I have to do in DataReady subroutine?
Thanks