Skip to content

Commit

Permalink
input: add import module for tektronix isf file format
Browse files Browse the repository at this point in the history
  • Loading branch information
filipkosecek committed Jun 22, 2022
1 parent ffd150d commit f5ab583
Show file tree
Hide file tree
Showing 3 changed files with 532 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile.am
Expand Up @@ -78,6 +78,7 @@ libsigrok_la_SOURCES += \
# Input modules
libsigrok_la_SOURCES += \
src/input/input.c \
src/input/isf.c \
src/input/feed_queue.c \
src/input/binary.c \
src/input/chronovu_la8.c \
Expand Down
2 changes: 2 additions & 0 deletions src/input/input.c
Expand Up @@ -73,6 +73,7 @@ extern SR_PRIV struct sr_input_module input_wav;
extern SR_PRIV struct sr_input_module input_raw_analog;
extern SR_PRIV struct sr_input_module input_logicport;
extern SR_PRIV struct sr_input_module input_saleae;
extern SR_PRIV struct sr_input_module input_isf;
extern SR_PRIV struct sr_input_module input_null;
/** @endcond */

Expand All @@ -89,6 +90,7 @@ static const struct sr_input_module *input_module_list[] = {
&input_raw_analog,
&input_logicport,
&input_saleae,
&input_isf,
&input_null,
NULL,
};
Expand Down

0 comments on commit f5ab583

Please sign in to comment.