It would be nice to be able to "interrupt" the flow of lines and start from a new offset to, for example, display breadcrumbs as follows:
```c file:app.c ln:5260
void send_stats(void) { // interpret voltage and current accum for rms value as
// well as freq, PF and total watts
// Actual DSP response \ln:5297
sprintf(string1, "^%04d", DSP_UNIT_ADDR);
stringPointer = string1;
WriteString();
if ((DSP_CONTROL_MODE & 0x80) > 0) {
sprintf(string1,
",%05.1f,%05.1f,%05.1f",
SystemStats[VA_LL],
SystemStats[VB_LL],
SystemStats[VC_LL]);
stringPointer = string1;
WriteString();
}
```
It would be nice to be able to "interrupt" the flow of lines and start from a new offset to, for example, display breadcrumbs as follows:
might render as:
