nuttx-apps/industry/scpi/Makefile
Nightt cea2f89f74 industry/scpi: add unit parser config options
Expose scpi-parser unit support through explicit Kconfig options instead of raw CFLAGS.

Map each option to the corresponding upstream USE_UNITS_* compile-time define, preserving the existing default unit set while allowing users to enable groups such as USE_UNITS_TIME.

Signed-off-by: Nightt <87569709+nightt5879@users.noreply.github.com>
2026-06-25 23:48:43 +08:00

89 lines
3.2 KiB
Makefile

############################################################################
# apps/industry/scpi/Makefile
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
# ASF licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
############################################################################
include $(APPDIR)/Make.defs
SCPI_VERSION = 2.2
SCPI_UNPACK = scpi-parser
SCPI_TARBALL = v$(SCPI_VERSION).tar.gz
SCPI_URL_BASE = https://github.com/j123b567/scpi-parser/archive/refs/tags
SCPI_URL = $(SCPI_URL_BASE)/$(SCPI_TARBALL)
CSRCS += error.c fifo.c ieee488.c
CSRCS += minimal.c parser.c units.c utils.c
CSRCS += lexer.c expression.c
VPATH += $(SCPI_UNPACK)/libscpi/src
CFLAGS += -DHAVE_STRNLEN
CFLAGS += -DHAVE_SNPRINTF
CFLAGS += -DHAVE_STRNDUP
CFLAGS += -DHAVE_STRNCASECMP
SCPI_UNIT = $(if $(filter y,$(CONFIG_SCPI_PARSER_UNITS_$(1))),1,0)
SCPI_UECC = $(call SCPI_UNIT,ELECTRIC_CHARGE_CONDUCTANCE)
CFLAGS += -DUSE_UNITS_IMPERIAL=$(call SCPI_UNIT,IMPERIAL)
CFLAGS += -DUSE_UNITS_ANGLE=$(call SCPI_UNIT,ANGLE)
CFLAGS += -DUSE_UNITS_PARTICLES=$(call SCPI_UNIT,PARTICLES)
CFLAGS += -DUSE_UNITS_DISTANCE=$(call SCPI_UNIT,DISTANCE)
CFLAGS += -DUSE_UNITS_MAGNETIC=$(call SCPI_UNIT,MAGNETIC)
CFLAGS += -DUSE_UNITS_LIGHT=$(call SCPI_UNIT,LIGHT)
CFLAGS += -DUSE_UNITS_ENERGY_FORCE_MASS=$(call SCPI_UNIT,ENERGY_FORCE_MASS)
CFLAGS += -DUSE_UNITS_TIME=$(call SCPI_UNIT,TIME)
CFLAGS += -DUSE_UNITS_TEMPERATURE=$(call SCPI_UNIT,TEMPERATURE)
CFLAGS += -DUSE_UNITS_RATIO=$(call SCPI_UNIT,RATIO)
CFLAGS += -DUSE_UNITS_POWER=$(call SCPI_UNIT,POWER)
CFLAGS += -DUSE_UNITS_FREQUENCY=$(call SCPI_UNIT,FREQUENCY)
CFLAGS += -DUSE_UNITS_ELECTRIC=$(call SCPI_UNIT,ELECTRIC)
CFLAGS += -DUSE_UNITS_ELECTRIC_CHARGE_CONDUCTANCE=$(SCPI_UECC)
ifneq ($(CONFIG_SCPI_PARSER_DEMO),)
MAINSRC = $(SCPI_UNPACK)/examples/test-interactive/main.c
CSRCS += scpi-def.c
PROGNAME = scpidemo
PRIORITY = $(CONFIG_SCPI_PARSER_DEMO_PRIORITY)
STACKSIZE = $(CONFIG_SCPI_PARSER_DEMO_STACKSIZE)
MODULE = $(CONFIG_SCPI_PARSER)
VPATH += $(SCPI_UNPACK)/examples
VPATH += $(SCPI_UNPACK)/examples/common
endif # CONFIG_SCPI_PARSER_DEMO
$(SCPI_TARBALL):
$(Q) echo "Downloading $(SCPI_TARBALL)"
$(Q) curl -O -L $(SCPI_URL)
$(Q) echo "Unpacking $(SCPI_TARBALL) to $(SCPI_UNPACK)"
$(Q) tar xzvf $(SCPI_TARBALL)
$(Q) mv scpi-parser-$(SCPI_VERSION) $(SCPI_UNPACK)
# Download and unpack tarball if no git repo found
ifeq ($(wildcard $(SCPI_UNPACK)/.git),)
context:: $(SCPI_TARBALL)
distclean::
$(call DELDIR, $(SCPI_UNPACK))
$(call DELFILE, $(SCPI_TARBALL))
endif
include $(APPDIR)/Application.mk