Skip to content

Commit

Permalink
Merge pull request #14 from UlfBj/main
Browse files Browse the repository at this point in the history
Renamed CargoVehicle to Truck
  • Loading branch information
UlfBj authored Sep 9, 2024
2 parents 85d55e0 + 96eea47 commit 89ffcd8
Show file tree
Hide file tree
Showing 64 changed files with 10 additions and 10 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@
#
# The root branch for highlevel cargo vehicle signals and attributes.
#
CV:
Truck:
type: branch
description: Root for cargo vehicle data.

#include Vehicle/Vehicle.vspec CV
#include Vehicle/Vehicle.vspec Truck

#include ADAS/ADAS.vspec CV
#include ADAS/ADAS.vspec Truck

#include Powertrain/Powertrain.vspec CV
#include Powertrain/Powertrain.vspec Truck

#include Body/Body.vspec CV
#include Body/Body.vspec Truck

#include Chassis/Chassis.vspec CV
#include Chassis/Chassis.vspec Truck

#include Cabin/Cabin.vspec CV
#include Cabin/Cabin.vspec Truck

#include Cargo/Cargo.vspec CV
#include Cargo/Cargo.vspec Truck

#include Exterior/Exterior.vspec CV
#include Exterior/Exterior.vspec Truck

File renamed without changes.
2 changes: 1 addition & 1 deletion spec/trees/himConfigurator.go
Original file line number Diff line number Diff line change
Expand Up @@ -1114,7 +1114,7 @@ func main() {
makeCommand := parser.Selector("m", "makecommand", []string{"all", "yaml", "json", "csv", "binary"}, &argparse.Options{Required: false,
Help: "Make command parameter must be either: all, yaml, csv, or binary", Default: "all"})
// configFileName := parser.String("p", "pathconfigfile", &argparse.Options{Required: false, Help: "path to configuration file", Default: "himConfiguration.json"})
vspecDir := parser.String("v", "vspecdir", &argparse.Options{Required: false, Help: "path to vspec root directory", Default: "Vehicle/CargoVehicle/"})
vspecDir := parser.String("v", "vspecdir", &argparse.Options{Required: false, Help: "path to vspec root directory", Default: "Vehicle/Truck/"})
sConf := parser.Flag("c", "saveconf", &argparse.Options{Required: false, Help: "Saves the configured vspec file with extension .conf", Default: false})
enumSubst := parser.Flag("e", "enumSubstitute", &argparse.Options{Required: false, Help: "Substitute enum links to Datatype tree with actual datatypes", Default: false})
err := parser.Parse(os.Args)
Expand Down

0 comments on commit 89ffcd8

Please sign in to comment.