first lut function, suite

This commit is contained in:
tth 2019-01-14 14:04:17 +01:00
parent ae4c5334d0
commit 4c984ebdcc
3 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View File

@ -3,6 +3,7 @@ a.out
fake-values fake-values
essai essai
serial/t serial/t
core/t
doc/*.toc doc/*.toc
doc/*.log doc/*.log

View File

@ -20,11 +20,11 @@ for(count=0; count<1024; count++) {
foo = fscanf(fp, "%f", &where->vals[foo]); foo = fscanf(fp, "%f", &where->vals[foo]);
if (1 != foo) { if (1 != foo) {
fprintf(stderr, "%s: bad read %d\n", __func__, foo); fprintf(stderr, "%s: bad read %d\n", __func__, foo);
return -2; return -4;
} }
} }
return -1; return 0;
} }
/* ---------------------------------------------------------------- */ /* ---------------------------------------------------------------- */
@ -60,6 +60,7 @@ if (foo) {
exit(5); exit(5);
} }
foo = slurp_lut1024f(fplut, where, 0);
fclose(fplut); fclose(fplut);

View File

@ -10,7 +10,7 @@ NB_READ=15000
./t -v -n ${NB_READ} -d ${DEVICE} | tee -a ${DATAFILE} ./t -v -n ${NB_READ} -d ${DEVICE} | tee -a ${DATAFILE}
gnuplot << __EOC__ gnuplot << __EOC__
set term png size 1600,512 set term png size 3200,512
set output "${IMAGE}" set output "${IMAGE}"
set grid set grid
set title "Dans le Double Dragon 2" set title "Dans le Double Dragon 2"