input: Convert CSV module.
This commit is contained in:
parent
3e2cd21115
commit
41d214f61a
|
@ -44,10 +44,10 @@ libsigrok_la_SOURCES = \
|
||||||
# Input modules
|
# Input modules
|
||||||
# src/input/binary.c \
|
# src/input/binary.c \
|
||||||
# src/input/chronovu_la8.c \
|
# src/input/chronovu_la8.c \
|
||||||
# src/input/csv.c \
|
|
||||||
#
|
#
|
||||||
libsigrok_la_SOURCES += \
|
libsigrok_la_SOURCES += \
|
||||||
src/input/input.c \
|
src/input/input.c \
|
||||||
|
src/input/csv.c \
|
||||||
src/input/vcd.c \
|
src/input/vcd.c \
|
||||||
src/input/wav.c
|
src/input/wav.c
|
||||||
|
|
||||||
|
|
770
src/input/csv.c
770
src/input/csv.c
File diff suppressed because it is too large
Load Diff
|
@ -69,7 +69,7 @@ static const struct sr_input_module *input_module_list[] = {
|
||||||
&input_vcd,
|
&input_vcd,
|
||||||
// &input_chronovu_la8,
|
// &input_chronovu_la8,
|
||||||
&input_wav,
|
&input_wav,
|
||||||
// &input_csv,
|
&input_csv,
|
||||||
/* This one has to be last, because it will take any input. */
|
/* This one has to be last, because it will take any input. */
|
||||||
// &input_binary,
|
// &input_binary,
|
||||||
NULL,
|
NULL,
|
||||||
|
|
Loading…
Reference in New Issue