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

24 lines
375 B

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