/* void incTextBuffer(void) { runProc_prnSeqNr++; runProc_pointPrnTxt=0; if (runProc_prnSeqNr>127) runProc_prnSeqNr=127; runProc_prnCmdSeq[runProc_pointPrnCmd]=1; runProc_prnCmdPara[runProc_pointPrnCmd++]=runProc_prnSeqNr; }*/ /* void T_runProc::subAppendNxtTxt(char *textLine) { // append given text to current sequence, respect max. sequ.length // also send a command "print text buffer nn" ==1 once for each buffer //static uint8_t runProc_prnCmdSeq[512]; //static uint8_t runProc_prnCmdPara[512]; //static uint16_t runProc_pointPrnCmd; int sl=strlen(textLine); if (sl>1024) sl=1024; textLine[sl]=0; if (runProc_prnSeqNr==0 && runProc_pointPrnTxt<3) { // then this is the very first text entry // store command to print this buffer runProc_prnCmdSeq[runProc_pointPrnCmd]=1; runProc_prnCmdPara[runProc_pointPrnCmd++]=runProc_prnSeqNr; } if ( (runProc_pointPrnTxt + sl) > 1023) { incTextBuffer(); } runProc_prnTextSeq[runProc_prnSeqNr].append(textLine); //for (nn=0; nn