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

39 lines
686 B

9 years ago
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
DEFINES += __null=0
INCLUDEPATH += source/ \
include/ \
/usr/arm-none-eabi/include \
/usr/lib/gcc/x86_64-unknown-linux-gnu/5.3.0/plugin/include
9 years ago
SOURCES += \
9 years ago
main.c \
source/scpi_parser.c \
source/scpi_errors.c \
source/scpi_regs.c \
source/scpi_builtins.c \
example/example.c
9 years ago
DISTFILES += \
9 years ago
style.astylerc \
.gitignore \
LICENSE \
README.md \
Makefile \
example/Makefile
9 years ago
HEADERS += \
9 years ago
source/scpi_parser.h \
source/scpi_errors.h \
source/scpi_regs.h \
source/scpi_builtins.h \
include/scpi_builtins.h \
include/scpi_errors.h \
include/scpi_parser.h \
include/scpi_regs.h \
include/scpi.h