|
1 | | -# DaVinci Samples |
2 | | - |
3 | | -Welcome to **DaVinci Samples**, an open-source repository designed to help developers understand and adopt **DaVinci Configurator Classic Version 6** workflows more easily. |
4 | | - |
5 | | -## 📌 What is This Repository For? |
6 | | - |
7 | | -This repository provides sample resources to help you integrate DaVinci Configurator Classic Version 6 workflows: |
8 | | - |
9 | | -- **Ready-Set-Go-Scripts** demonstrating how DaVinci Configurator Classic Version 6 integrates into typical MICROSAR projects. |
10 | | - - Create a new DaVinci project and link additional workspaces. |
11 | | - - Project Import and Update |
12 | | -- **Project-Migration** |
13 | | - - Tool Migration (DaVinci Configurator, DaVinci Developer, vVIRTUALtarget) |
14 | | - - BSW-Package Migration Trigger |
15 | | - - Diagnostic Import |
16 | | - - Store User Code Blocks |
17 | | -- **Build-Starter** shows how to build and automate configurations using Bazel and modern build systems. You can leverage various Bazel rules depending on your build needs: |
18 | | - - Create a new DaVinci Project or reuse an existing one |
19 | | - - Execute EcuC-as-Code |
20 | | - - Project Import and Update |
21 | | - - Validate and generate the DaVinci Project |
22 | | - |
23 | | -## 🛠 Requirements |
24 | | - |
25 | | -Always required: |
26 | | - |
27 | | -- Activated DaVinci Configurator Classic Version 6 License |
28 | | -- A valid MICROSAR BSW package |
29 | | - |
30 | | -If using scripts: |
31 | | - |
32 | | -- DaVinci Developer Classic (Release 4.17 SP2 or newer) |
33 | | -- DaVinci Team (Release 6.2 or newer) |
34 | | - |
35 | | -If using pipelines (if using Bazel): |
36 | | - |
37 | | -- Bazel by Google (see [.bazeliskrc](.bazeliskrc) for version) |
38 | | - |
39 | | -If using EcuC as Code: |
40 | | - |
41 | | -- EcuC-As-Code Development Kit |
42 | | - |
43 | | -## 🚀 Getting Started |
44 | | - |
45 | | -1. Clone the repository: |
46 | | - |
47 | | - ```bash |
48 | | - git clone https://github.com/vectorgrp/davinci-samples.git |
49 | | - ``` |
50 | | - |
51 | | -2. Explore the samples: |
52 | | - - Navigate to the folder that matches your use case. |
53 | | -3. Follow the instructions in each folder’s README to get started. |
54 | | - |
55 | | -## 📂 Repository Structure |
56 | | - |
57 | | -```text |
58 | | -davinci-samples/ |
59 | | - ├─ build-starter/ # Bazel-based project setup example |
60 | | - ├─ project-migration/ # Project migration template as example workflow |
61 | | - ├─ ready-set-go-scripts/ # Ready-to-use scripts for quick workflow setup |
62 | | - ├─ .bazelrc # Bazel configuration file defining build options and settings |
63 | | - ├─ .editorconfig # Editor configuration for consistent coding styles across IDEs |
64 | | - ├─ .gitignore # Specifies files and directories to be ignored by Git |
65 | | - ├─ LICENSE # License information |
66 | | - ├─ MODULE.bazel # Bazel module definition for dependency management |
67 | | - ├─ MODULE.bazel.lock # Lock file for Bazel module dependencies to ensure reproducible builds |
68 | | - ├─ README.md # Main documentation for the repository |
69 | | - └─ SECURITY.md # Security policy |
70 | | -``` |
71 | | - |
72 | | -## 📖 Documentation |
73 | | - |
74 | | -Check the repository folders for step-by-step guides and explanations. |
75 | | - |
76 | | -[Learn more about DaVinci Configurator Classic Version 6.](https://help.vector.com/davinci-configurator-classic/en/current/index.html) |
| 1 | +# DaVinci Samples |
| 2 | + |
| 3 | +Welcome to **DaVinci Samples**, an open-source repository designed to help developers understand and adopt **DaVinci Configurator Classic Version 6** workflows more easily. |
| 4 | + |
| 5 | +## 📌 What is This Repository For? |
| 6 | + |
| 7 | +This repository provides sample resources to help you integrate DaVinci Configurator Classic Version 6 workflows: |
| 8 | + |
| 9 | +- **Ready-Set-Go-Scripts** demonstrating how DaVinci Configurator Classic Version 6 integrates into typical MICROSAR projects. |
| 10 | + - **davinci-workspace-setup**: Create a new DaVinci Project and link additional workspaces. Execute project import and update. |
| 11 | + - **project-migration**: Project migration template as example workflow. |
| 12 | +- **Project-Migration** |
| 13 | + - Tool Migration (DaVinci Configurator, DaVinci Developer, vVIRTUALtarget) |
| 14 | + - BSW-Package Migration Trigger |
| 15 | + - Diagnostic Import |
| 16 | + - Store User Code Blocks |
| 17 | +- **Build-Starter** shows how to build and automate configurations using Bazel and modern build systems. You can leverage various Bazel rules depending on your build needs: |
| 18 | + - Create a new DaVinci Project or reuse an existing one |
| 19 | + - Execute EcuC-as-Code |
| 20 | + - Project Import and Update |
| 21 | + - Validate and generate the DaVinci Project |
| 22 | + |
| 23 | +## 🛠 Requirements |
| 24 | + |
| 25 | +Always required: |
| 26 | + |
| 27 | +- Activated DaVinci Configurator Classic Version 6 License |
| 28 | +- A valid MICROSAR BSW package |
| 29 | + |
| 30 | +If using scripts: |
| 31 | + |
| 32 | +- DaVinci Developer Classic (Release 4.17 SP2 or newer) |
| 33 | +- DaVinci Team (Release 6.2 or newer) |
| 34 | + |
| 35 | +If using pipelines (if using Bazel): |
| 36 | + |
| 37 | +- Bazel by Google (see [.bazeliskrc](.bazeliskrc) for version) |
| 38 | + |
| 39 | +If using EcuC as Code: |
| 40 | + |
| 41 | +- EcuC-As-Code Development Kit |
| 42 | + |
| 43 | +## 🚀 Getting Started |
| 44 | + |
| 45 | +1. Clone the repository: |
| 46 | + |
| 47 | + ```bash |
| 48 | + git clone https://github.com/vectorgrp/davinci-samples.git |
| 49 | + ``` |
| 50 | + |
| 51 | +2. Explore the samples: |
| 52 | + - Navigate to the folder that matches your use case. |
| 53 | +3. Follow the instructions in each folder’s README to get started. |
| 54 | + |
| 55 | +## 📂 Repository Structure |
| 56 | + |
| 57 | +```text |
| 58 | +davinci-samples/ |
| 59 | + ├─ build-starter/ # Bazel-based project setup example |
| 60 | + ├─ ready-set-go-scripts/ # Ready-to-use scripts for quick workflow setup |
| 61 | + ├─ .bazelrc # Bazel configuration file defining build options and settings |
| 62 | + ├─ .editorconfig # Editor configuration for consistent coding styles across IDEs |
| 63 | + ├─ .gitignore # Specifies files and directories to be ignored by Git |
| 64 | + ├─ LICENSE # License information |
| 65 | + ├─ MODULE.bazel # Bazel module definition for dependency management |
| 66 | + ├─ MODULE.bazel.lock # Lock file for Bazel module dependencies to ensure reproducible builds |
| 67 | + ├─ README.md # Main documentation for the repository |
| 68 | + └─ SECURITY.md # Security policy |
| 69 | +``` |
| 70 | + |
| 71 | +## 📖 Documentation |
| 72 | + |
| 73 | +Check the repository folders for step-by-step guides and explanations. |
| 74 | + |
| 75 | +[Learn more about DaVinci Configurator Classic Version 6.](https://help.vector.com/davinci-configurator-classic/en/current/index.html) |
0 commit comments