<font face="Arial, Verdana">I think you mean the print status with filename and progress bar. That is something printer vendors really like as it shows things a novice can understand. Actually it is the firmware showing this - only thing is host know knows printer wants this and sends the data required. If you look into Commands.cpp in firmware you find this:</font>
<font face="Arial, Verdana">#if FEATURE_CONTROLLER != NO_CONTROLLER</font>
<font face="Arial, Verdana"> Com::cap(PSTR("PROGRESS:1"));</font>
<font face="Arial, Verdana">#else</font>
<font face="Arial, Verdana"> Com::cap(PSTR("PROGRESS:0"));</font>
<font face="Arial, Verdana">#endif</font>
<font face="Arial, Verdana">
</font>
<font face="Arial, Verdana">If progress is returned 0 it will not send these data and stick to the screen you are used to see. Maybe I should add a config option to select if you want it or not:-)</font>
<font face="Arial, Verdana">
</font>