To turn on debug logging in the Windows Time service:
Start Registry Editor.
Locate and then click the registry key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config.
On the Edit menu, click New Value, and then add the following registry values:
Value Name: FileLogSize Data Type: DWORD Value data: 10000000 This registry value specifies the size of the log file in bytes. A value of 10000000 bytes will limit the log file to approximately 10 MB.
Value name: FileLogName Data Type: String Value data: C:\Windows\Temp\w32time.log This registry value specifies the location of the log file. The path is not fixed. You can use a different path.
Value name: FileLogEntries Data Type: String Value: 0-116 This registry value specifies the level of detail of the information in the debug log. If you must have more detailed logging information, contact a Microsoft Support Professional.
Note: Do not install C/C++ extension pack from Microsoft
copy deepstream-test5 to your workspace deepstream-test5 is a complete example to modify deepstream-app,this will take the advantage of the module design of deepstream-app. You can add probe to customize the app. It have good config parser and error handling, those will save many effort. Following our workspace is in the copy of deepstream-test5 folder.
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version":"0.2.0", "configurations":[ { "type":"lldb", "request":"launch", "name":"Debug", "program":"${workspaceFolder}/deepstream-test5",//the path of the executable file deepstream-test5 "args":["-c","configs/test5_config_file_src_infer.txt"],//arg for deepstream-test5 "cwd":"${workspaceFolder}",//指定工作目錄 "preLaunchTask":"CMake: build" } ] } ```
Create CMAKELists.txt Create CMakeLists.txt under the workspace folder, CMake will help you find CUDA and nvcc, no more CUDA_VER env variable needed even in jetson. In this example,we need to compile deepstream-app first and use the object file in our project.So we use ExternalProject_Add to do this.
We need to change the permission for deepstream-app source folder in order to compile the deepstream-app.
cmake_minimum_required(VERSION 3.25) project(deepstream-test5 LANGUAGES C CXX) #project(deepstream-test5 LANGUAGES CUDA C CXX) set(CMAKE_CXX_STANDARD 14) set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) set(CMAKE_BUILD_TYPE Debug) find_package(PkgConfig REQUIRED) pkg_check_modules(PKGS REQUIRED uuid x11 gstreamer-video-1.0 json-glib-1.0 gstreamer-1.0 gstreamer-rtsp-server-1.0 yaml-cpp) find_package(CUDAToolkit) message("CUDA_VER is ${CUDAToolkit_VERSION_MAJOR}.${CUDAToolkit_VERSION_MINOR}")
if(NOT DEFINED CMAKE_CUDA_STANDARD) set(CMAKE_CUDA_STANDARD 11) set(CMAKE_CUDA_STANDARD_REQUIRED True) endif()