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

I am so excited about this package! Thanks for the wonderful work, NetDevil.

Did anybody report that the following println code consume so much memory?

// set the names for the 3 checkboxes
Serial.println("CUSTOMBOX1,LABEL,Stop logging at 5 min?");
Serial.println("CUSTOMBOX2,LABEL,Resume log at 360?");
Serial.println("CUSTOMBOX3,LABEL,Quit at 3600?");

// check 2 of the 3 checkboxes (first two to true, third to false)
Serial.println("CUSTOMBOX1,SET,1");
Serial.println("CUSTOMBOX2,SET,1");
Serial.println("CUSTOMBOX3,SET,0");

The following is with them included:

Global variables use 1642 bytes (80%) of dynamic memory, leaving 406 bytes for local variables. Maximum is 2048 bytes.
Low memory available, stability problems may occur.

and with them commented out:

Global variables use 1484 bytes (72%) of dynamic memory, leaving 564 bytes for local variables. Maximum is 2048 bytes.