]> sigrok.org Git - libsigrok.git/commitdiff
Gnuplot: Nicer output formatting.
authorUwe Hermann <redacted>
Sun, 9 May 2010 18:27:11 +0000 (20:27 +0200)
committerUwe Hermann <redacted>
Sun, 9 May 2010 20:06:30 +0000 (22:06 +0200)
output/output_gnuplot.c

index e379ef29cc70ff1994e3528db637c42f89778091..2c062397db98075c3167a45ba000b86c4433eeea 100644 (file)
@@ -36,8 +36,11 @@ const char *gnuplot_header = "\
 #\n\
 # Generated by: %s on %s%s\
 # Timescale: %d %s\n\
-# Column/probe assignment:\n\
-# Column 0: Sample counter (for internal gnuplot purposes)\n%s\n";
+#\n\
+# Column\tProbe\n\
+# -------------------------------------\
+----------------------------------------\n\
+# 0\t\tSample counter (for internal gnuplot purposes)\n%s\n";
 
 const char *gnuplot_header_comment = "\
 # Comment: Acquisition with %d/%d probes at %s\n";
@@ -99,7 +102,7 @@ static int init(struct output *o)
        wbuf[0] = '\0';
        for (i = 0; i < ctx->num_enabled_probes; i++) {
                c = (char *)&wbuf + strlen((char *)&wbuf);
-               sprintf(c, "# Column %d: %s\n", i + 1, ctx->probelist[i]);
+               sprintf(c, "# %d\t\t%s\n", i + 1, ctx->probelist[i]);
        }
 
        /* TODO: date: File or signals? Make y/n configurable. */