Loading [MathJax]/extensions/tex2jax.js
  • <xmp id="om0om">
  • <table id="om0om"><noscript id="om0om"></noscript></table>

  • DriveWorks SDK Reference
    5.14.77 Release
    For Test and Development only

    All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
    SensorCommonPlugin.h
    Go to the documentation of this file.
    1
    2//
    3// Notice
    4// ALL NVIDIA DESIGN SPECIFICATIONS AND CODE ("MATERIALS") ARE PROVIDED "AS IS" NVIDIA MAKES
    5// NO REPRESENTATIONS, WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO
    6// THE MATERIALS, AND EXPRESSLY DISCLAIMS ANY IMPLIED WARRANTIES OF NONINFRINGEMENT,
    7// MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
    8//
    9// NVIDIA CORPORATION & AFFILIATES assumes no responsibility for the consequences of use of such
    10// information or for any infringement of patents or other rights of third parties that may
    11// result from its use. No license is granted by implication or otherwise under any patent
    12// or patent rights of NVIDIA CORPORATION & AFFILIATES. No third party distribution is allowed unless
    13// expressly authorized by NVIDIA. Details are subject to change without notice.
    14// This code supersedes and replaces all information previously supplied.
    15// NVIDIA CORPORATION & AFFILIATES products are not authorized for use as critical
    16// components in life support devices or systems without express written approval of
    17// NVIDIA CORPORATION & AFFILIATES.
    18//
    19// SPDX-FileCopyrightText: Copyright (c) 2019-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
    20// SPDX-License-Identifier: LicenseRef-NvidiaProprietary
    21//
    22// NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
    23// property and proprietary rights in and to this material, related
    24// documentation and any modifications thereto. Any use, reproduction,
    25// disclosure or distribution of this material and related documentation
    26// without an express license agreement from NVIDIA CORPORATION or
    27// its affiliates is strictly prohibited.
    28//
    30
    38#ifndef DW_SENSORS_COMMON_PLUGIN_H
    39#define DW_SENSORS_COMMON_PLUGIN_H
    40
    41#include <dw/core/base/Types.h>
    43
    44#include <dw/sensors/Sensors.h>
    45
    67#ifdef __cplusplus
    68extern "C" {
    69#endif
    70
    72
    73// Enum to indicate the relationship between raw and decoded data for a custom sensor
    74typedef enum {
    82
    83// Enum to define Time Domain
    84typedef enum {
    93
    95typedef struct
    96{
    98 size_t packetSize;
    102
    103// Holds the sensor firmware version information
    104typedef struct
    105{
    106 // Separate the fwVersion string into three pieces.
    107 uint64_t versionMajor; // Firmware version major number
    108 uint64_t versionMinor; // Firmware version minor number
    109 uint64_t versionPatch; // Firmware version patch number
    110 char* versionString; // Firmware version string
    112
    113// Holds the sensor information
    114typedef struct
    115{
    118
    119// Enum to indicate which level the raw data to read from
    120typedef enum {
    121 DW_SENSORS_RAW_DATA_LEVEL_ZERO = 0, // Raw data same as from readRawData, TP segment in SOME/IP use case
    122 DW_SENSORS_RAW_DATA_LEVEL_ONE = 1, // Raw data combined from LEVEL_ZERO raw Data, reassembled pdu(from segments) in SOME/IP use case
    123 DW_SENSORS_RAW_DATA_LEVEL_TWO = 2, // Raw data combined from LEVEL_ONE raw Data, combined pdu(from split pdus)
    124 DW_SENSORS_RAW_DATA_LEVEL_COUNT = 3 // Count for validating user passed level
    126
    140 dwSensorPluginProperties* properties,
    141 char const* params, dwContextHandle_t ctx);
    142
    155
    170
    184
    195
    208
    247typedef dwStatus (*dwSensorPlugin_readRawData)(uint8_t const** data, size_t* size, dwTime_t* timestamp,
    248 dwTime_t timeout_us, dwSensorPluginSensorHandle_t handle);
    249
    264
    285typedef dwStatus (*dwSensorPlugin_pushData)(size_t* lenPushed, uint8_t const* data, size_t const size, dwSensorPluginSensorHandle_t handle);
    286
    297
    321DW_DEPRECATED("dwSensorPlugin_getRawPackets is deprecated and will be removed in next major release. Please use dwSensorPlugin_getRawPackets instead")
    322typedef dwStatus (*dwSensorPlugin_getRawPackets)(uint8_t const* const rawData, size_t* const size,
    323 dwSensorPlugin_rawDataLevel level, int32_t groupNum, uint8_t const** const data, dwSensorPluginSensorHandle_t handle);
    324
    351typedef dwStatus (*dwSensorPlugin_getRawPacketsNew)(uint8_t const* const rawData, size_t* const size,
    352 dwSensorPlugin_rawDataLevel level, int32_t groupNum, uint8_t const** const data, int32_t* extra1, int32_t* extra2, dwSensorPluginSensorHandle_t handle);
    367typedef dwStatus (*dwSensorPlugin_rawDataReadyForDecode)(size_t* offset, size_t* size, uint8_t const* const data, dwSensorPluginSensorHandle_t ctx);
    368
    370typedef struct
    371{
    382#pragma GCC diagnostic push
    383#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
    385#pragma GCC diagnostic pop
    390
    393#ifdef __cplusplus
    394}
    395#endif
    396
    397#endif
    NVIDIA DriveWorks API: Core Methods
    dwStatus
    Status definition.
    Definition: ErrorDefs.h:45
    NVIDIA DriveWorks API: Sensors
    NVIDIA DriveWorks API: Core Types
    int64_t dwTime_t
    Specifies a timestamp unit, in microseconds.
    Definition: BasicTypes.h:65
    struct dwContextObject * dwContextHandle_t
    Context handle.
    Definition: Context.h:86
    #define DW_DEPRECATED(msg)
    Definition: Exports.h:66
    size_t packetSize
    Packet size for each raw data message.
    dwSensorPlugin_returnRawData returnRawData
    dwSensorPlugin_rawToDecMap rawToDec
    Indicate the relationship between raw data and decoded packet.
    dwSensorPlugin_getRawPacketsNew getRawPacketsNew
    dwSensorPlugin_firmwareVersion firmware
    dwSensorPlugin_pushData pushData
    dwSensorPlugin_getSensorInformation getSensorInformation
    dwSensorPlugin_createHandle createHandle
    dwSensorPlugin_release release
    dwSensorPlugin_rawDataReadyForDecode rawDataReadyForDecode
    Funciton pointer used to check if raw data is ready for decode.
    dwSensorPlugin_readRawData readRawData
    dwSensorPlugin_createSensor createSensor
    dwSensorPlugin_getRawPackets getRawPackets
    dwStatus(* dwSensorPlugin_pushData)(size_t *lenPushed, uint8_t const *data, size_t const size, dwSensorPluginSensorHandle_t handle)
    Pushes raw data obtained from a previous 'dwSensorPlugin_readRawData' call for decoding.
    dwStatus(* dwSensorPlugin_createSensor)(char const *params, dwSALHandle_t sal, dwSensorPluginSensorHandle_t handle)
    Creates and initializes a new sensor managed by the plugin.
    dwStatus(* dwSensorPlugin_readRawData)(uint8_t const **data, size_t *size, dwTime_t *timestamp, dwTime_t timeout_us, dwSensorPluginSensorHandle_t handle)
    Reads RAW data for one single message from the sensor as byte array.
    dwStatus(* dwSensorPlugin_stop)(dwSensorPluginSensorHandle_t handle)
    Stops the sensor.
    dwStatus(* dwSensorPlugin_createHandle)(dwSensorPluginSensorHandle_t *handle, dwSensorPluginProperties *properties, char const *params, dwContextHandle_t ctx)
    Creates a new handle to the sensor managed by the plugin module.
    dwSensorPlugin_rawToDecMap
    dwStatus(* dwSensorPlugin_release)(dwSensorPluginSensorHandle_t handle)
    Releases a sensor managed by the plugin module.
    dwStatus(* dwSensorPlugin_rawDataReadyForDecode)(size_t *offset, size_t *size, uint8_t const *const data, dwSensorPluginSensorHandle_t ctx)
    API for sensor that raw data and decoded packet are many to one relationship.
    dwStatus(* dwSensorPlugin_getRawPackets)(uint8_t const *const rawData, size_t *const size, dwSensorPlugin_rawDataLevel level, int32_t groupNum, uint8_t const **const data, dwSensorPluginSensorHandle_t handle)
    Reads RAW data from different level.
    dwStatus(* dwSensorPlugin_start)(dwSensorPluginSensorHandle_t handle)
    Starts the sensor previously successfully created with 'dwSensorPlugin_createSensor' interface.
    void * dwSensorPluginSensorHandle_t
    dwStatus(* dwSensorPlugin_getSensorInformation)(dwSensorPlugin_information *information, dwSensorPluginSensorHandle_t sensor)
    Gets information of this sensor.
    dwSensorPlugin_timeDomain
    dwStatus(* dwSensorPlugin_getRawPacketsNew)(uint8_t const *const rawData, size_t *const size, dwSensorPlugin_rawDataLevel level, int32_t groupNum, uint8_t const **const data, int32_t *extra1, int32_t *extra2, dwSensorPluginSensorHandle_t handle)
    Reads RAW data from different level.
    dwSensorPlugin_rawDataLevel
    dwStatus(* dwSensorPlugin_reset)(dwSensorPluginSensorHandle_t handle)
    Resets the sensor.
    dwStatus(* dwSensorPlugin_returnRawData)(uint8_t const *data, dwSensorPluginSensorHandle_t handle)
    Returns RAW data to sensor as a byte array.
    @ DW_SENSORS_RAW_DEC_NOT_SUPPORTED
    Not supported.
    @ DW_SENSORS_RAW_DEC_MANY_TO_ONE
    N-1(N>1) map between raw data and decoded packet.
    @ DW_SENSORS_RAW_DEC_ONE_TO_ONE
    1-1 map between raw data and decoded packet
    @ DW_SENSORS_PLUGIN_TIME_DOMAIN_PTP
    Precision Time Protocol.
    @ DW_SENSORS_PLUGIN_TIME_DOMAIN_UTC
    Coordinated Universal Time.
    @ DW_SENSORS_PLUGIN_TIME_DOMAIN_MISC
    Any other timestamp.
    @ DW_SENSORS_PLUGIN_TIME_DOMAIN_COUNT
    Number of time domains in this enum (leave at end)
    @ DW_SENSORS_PLUGIN_TIME_DOMAIN_HOST
    Host Clock, as given by DW TimeSource.
    @ DW_SENSORS_PLUGIN_TIME_DOMAIN_UTCTOH
    Top of Hour in Coordinated Universal Time.
    @ DW_SENSORS_PLUGIN_TIME_DOMAIN_TSC
    Tegra Timestamp System Counter.
    @ DW_SENSORS_RAW_DATA_LEVEL_TWO
    @ DW_SENSORS_RAW_DATA_LEVEL_ZERO
    @ DW_SENSORS_RAW_DATA_LEVEL_ONE
    @ DW_SENSORS_RAW_DATA_LEVEL_COUNT
    Function Table exposing common plugin functions.
    Structure for generic constants returned by the plugin.
    struct dwSALObject * dwSALHandle_t
    Handle representing the Sensor Abstraction Layer interface.
    Definition: Sensors.h:83
    人人超碰97caoporen国产