Commit eabc85d6 authored by Lucas Russo's avatar Lucas Russo

examples/acq.c: remove index number in text mode

This was good when acq.c output utility was the
input for programs like feedgnuplot. Now, this is
a burden that other software had to deal with,
so we remove it.
parent 72c7a28c
......@@ -44,7 +44,7 @@ void print_data (uint32_t chan, uint32_t *data, uint32_t size, file_fmt_e file_f
break;
}
printf ("%6u\t %8d\t %8d\t %8d\t %8d\n", i,
printf ("%8d\t %8d\t %8d\t %8d\n",
raw_data16[(i*4)],
raw_data16[(i*4)+1],
raw_data16[(i*4)+2],
......@@ -63,7 +63,7 @@ void print_data (uint32_t chan, uint32_t *data, uint32_t size, file_fmt_e file_f
break;
}
printf ("%6u\t %8d\t %8d\t %8d\t %8d\n", i,
printf ("%8d\t %8d\t %8d\t %8d\n",
raw_data32[(i*4)],
raw_data32[(i*4)+1],
raw_data32[(i*4)+2],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment