DriveWorks SDK Reference
3.0.4260 Release
For Test and Development only

/dvs/git/dirty/gitlab-master_av/dw/sdk/tools/dw_info/README-dw_info.md
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
3  *
4  * NVIDIA Corporation and its licensors retain all intellectual property
5  * and proprietary rights in and to this software, related documentation
6  * and any modifications thereto. Any use, reproduction, disclosure or
7  * distribution of this software and related documentation without an express
8  * license agreement from NVIDIA Corporation is strictly prohibited.
9  */
10 
11 @page dwx_info_tool DriveWorks Info Tool
12 
13 This is a simple tool to output Driveworks information, such as the current version,
14 as an easily parsable JSON format.
15 
16 @note SW Release Applicability: This tool is available in both <b>NVIDIA DriveWorks</b> and <b>NVIDIA DRIVE Software</b> releases.
17 
18 # Usage
19 
20 Run the tool by executing:
21 
22  ./dw_info
23 
24 and you will get an output similiar to this:
25 
26 ```
27 {
28  "version":
29  {
30  "major": 3,
31  "minor": 0,
32  "patch": 1,
33  "hash": "ffffffffffffffffffffffffffffffffffffffff",
34  "extra": ""
35  }
36 }
37 ```