Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding dtm0660 chip 15 bit protocol decoding code (based on fs9721.c) #1

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
.libs/*

bindings/*

doxy/*

*.o

.dirstamp

*.lo

*.Po

*.Plo

*.m4

*.0

autom4te.cache/output.1

autom4te.cache/output.2

autom4te.cache/requests

autom4te.cache/traces.1

autom4te.cache/traces.2

autostuff/ar-lib

autostuff/compile

autostuff/config.guess

autostuff/config.sub

autostuff/depcomp

autostuff/install-sh

autostuff/ltmain.sh

autostuff/missing

autostuff/test-driver

bindings/cxx/libsigrokcxx.pc

config.h

config.h.in

config.log

config.status

configure

include/libsigrok/stamp-h2

include/libsigrok/version.h

INSTALL

libsigrok.pc

libtool

Makefile

Makefile.in

stamp-h1

*.html

*.la
3 changes: 2 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ libsigrok_la_SOURCES += \
src/dmm/bm25x.c \
src/dmm/ut71x.c \
src/dmm/ut372.c \
src/dmm/vc870.c
src/dmm/vc870.c \
src/dmm/dtm0660.c

# Hardware (LCR chip parsers)
if NEED_SERIAL
Expand Down
Loading