DriveWorks SDK Reference
4.0.0 Release
For Test and Development only

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 # Usage
17 
18 Run the tool by executing:
19 
20  ./dw_info
21 
22 and you will get an output similiar to this:
23 
24 ```
25 {
26  "version":
27  {
28  "major": 3,
29  "minor": 0,
30  "patch": 1,
31  "hash": "ffffffffffffffffffffffffffffffffffffffff",
32  "extra": ""
33  }
34 }
35 ```