Skip to content

Commit

Permalink
Remove chapter
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Jaegervall <[email protected]>
  • Loading branch information
erikbosch committed Dec 3, 2024
1 parent f3acfcc commit aff447d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
23 changes: 19 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,22 @@ optional_targets: clean protobuf ttl

TOOLSDIR?=./vss-tools
VSS_VERSION ?= 0.0
COMMON_ARGS=-u ./spec/units.yaml --strict
#COMMON_ARGS=-u ./spec/units.yaml --strict
COMMON_ARGS=-u ./spec/units.yaml
COMMON_VSPEC_ARG=-s ./spec/VehicleSignalSpecification.vspec

#COMMON_VSPEC_ARG=-s ./spec/ServerSignalSpecification.vspec
TYPETREE = none
ifeq ($(TYPETREE), none)
TYPETREE_ARG =
else
TYPETREE_ARG = -t ./spec/${TYPETREE} --types-output vss-datatypes
endif
NEWKEY = none
ifeq ($(NEWKEY), none)
NEWKEY_ARG =
else
NEWKEY_ARG = -e $(NEWKEY)
endif
json:
vspec export json ${COMMON_ARGS} ${COMMON_VSPEC_ARG} -o vss.json

Expand All @@ -36,7 +49,8 @@ franca:
vspec export franca --franca-vss-version $(VSS_VERSION) ${COMMON_ARGS} ${COMMON_VSPEC_ARG} -o vss.fidl

yaml:
vspec export yaml ${COMMON_ARGS} ${COMMON_VSPEC_ARG} -o vss.yaml
vspec export yaml ${TYPETREE_ARG}.yaml ${COMMON_ARGS} ${COMMON_VSPEC_ARG} ${NEWKEY_ARG} -o vss.yaml
# vspec export yaml ${COMMON_ARGS} ${COMMON_VSPEC_ARG} -o vss.yaml

csv:
vspec export csv ${COMMON_ARGS} ${COMMON_VSPEC_ARG} -o vss.csv
Expand All @@ -51,7 +65,8 @@ overlays:
vspec export json ${COMMON_ARGS} -l overlays/extensions/OBD.vspec ${COMMON_VSPEC_ARG} -o vss_obd.json

binary:
vspec export binary ${COMMON_ARGS} ${COMMON_VSPEC_ARG} -o vss.binary
# vspec export binary ${COMMON_ARGS} ${COMMON_VSPEC_ARG} ${NEWKEY_ARG} -o vss.binary
vspec export binary ${TYPETREE_ARG}.binary ${COMMON_ARGS} ${COMMON_VSPEC_ARG} ${NEWKEY_ARG} -o vss.binary

protobuf:
vspec export protobuf ${COMMON_ARGS} ${COMMON_VSPEC_ARG} -o vss.proto
Expand Down
2 changes: 1 addition & 1 deletion docs-gen/content/catalog/_index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: VSS Catalog
weight: 25
chapter: true
chapter: false
---

The source for the COVESA VSS Catalog can be found in `*.vspec` files in the [COVESA VSS Repository](https://github.com/COVESA/vehicle_signal_specification).
Expand Down

0 comments on commit aff447d

Please sign in to comment.