]> sigrok.org Git - libsigrok.git/commitdiff
output/gnuplot: Use .dat as suggested file extension.
authorUwe Hermann <redacted>
Tue, 27 Jan 2015 08:00:34 +0000 (09:00 +0100)
committerUwe Hermann <redacted>
Tue, 27 Jan 2015 17:05:30 +0000 (18:05 +0100)
Gnuplot doesn't have any "official" file name extension(s). It uses
(at least) two different types of files basically:

 - "control files": These can have many different somewhat commonly
   used extensions such as .gpi, .gnu, .gnuplot, .gp, .plt, .gih,
   others. These files don't contain data, only Gnuplot commands such
   as 'set yrange [75:105]', 'set ylabel "foo" offset 1', and so on.

 - "data files": This is what libsigrok reads and writes. These files
   contain actual data to be graphed by Gnuplot (with the help of a
   specially-crafted control file, see above). The data is usually in
   a tab-separated format. The common file extension is usually .dat,
   though many others are possible as well.

src/output/gnuplot.c

index 134fd9042df970c41220a7d28cc8d4061637fc0e..631fefdaa3535e5ca7283138c1f22486bf54e203 100644 (file)
@@ -220,8 +220,8 @@ static int cleanup(struct sr_output *o)
 SR_PRIV struct sr_output_module output_gnuplot = {
        .id = "gnuplot",
        .name = "Gnuplot",
-       .desc = "Gnuplot file format",
-       .exts = (const char*[]){"pl", NULL},
+       .desc = "Gnuplot data file format",
+       .exts = (const char*[]){"dat", NULL},
        .options = NULL,
        .init = init,
        .receive = receive,