SCPI parser and status register model implementation (device side) written in C
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
scpi_parser/scpi.pro

25 lines
375 B

9 years ago
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
SOURCES += \
9 years ago
main.c \
source/scpi_parser.c \
source/scpi_errors.c \
source/scpi_regs.c \
source/scpi_builtins.c
9 years ago
DISTFILES += \
9 years ago
style.astylerc \
.gitignore \
LICENSE \
README.md \
Makefile
9 years ago
HEADERS += \
9 years ago
source/scpi_parser.h \
source/scpi_errors.h \
source/scpi_regs.h \
source/scpi_builtins.h