-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1dffcb
commit 743030e
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule scpi-parser
updated
18 files
+98 −0 | .github/workflows/main.yml | |
+0 −37 | .travis.yml | |
+2 −3 | README.md | |
+2 −0 | examples/Makefile | |
+0 −0 | examples/common-cxx/scpi-def.cpp | |
+58 −0 | examples/common-cxx/scpi-def.h | |
+22 −0 | examples/test-interactive-cxx/Makefile | |
+108 −0 | examples/test-interactive-cxx/main.cpp | |
+14 −4 | examples/test-tcp/main.c | |
+25 −0 | library.json | |
+7 −1 | libscpi/inc/scpi/cc.h | |
+4 −0 | libscpi/inc/scpi/config.h | |
+61 −3 | libscpi/inc/scpi/types.h | |
+4 −1 | libscpi/src/error.c | |
+160 −107 | libscpi/src/ieee488.c | |
+25 −14 | libscpi/src/parser.c | |
+4 −1 | libscpi/test/test_parser.c | |
+7 −7 | libscpi/test/test_scpi_utils.c |