mirror of
https://github.com/eclipse-openvehicle-api/openvehicle-api.git
synced 2026-04-12 08:30:24 +00:00
36 lines
1.4 KiB
C++
36 lines
1.4 KiB
C++
/********************************************************************************
|
|
* Copyright (c) 2025-2026 ZF Friedrichshafen AG
|
|
*
|
|
* This program and the accompanying materials are made available under the
|
|
* terms of the Apache License Version 2.0 which is available at
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
********************************************************************************/
|
|
|
|
/**
|
|
* namespace for the signal names
|
|
* in case /generated/vss_files/signal_identifier.h
|
|
* exists, use the file, otherwise define the namespace
|
|
*/
|
|
|
|
#ifndef SIGNAL_NAMES_H
|
|
#define SIGNAL_NAMES_H
|
|
|
|
#ifdef __has_include
|
|
#if __has_include("../generated/vss_files/signal_identifier.h")
|
|
#include "../generated/vss_files/signal_identifier.h"
|
|
#else
|
|
namespace headlight
|
|
{
|
|
// Data Dispatch Service signal names to dbc variable names C-type RX/TX vss name space
|
|
static std::string dsFCurrentLatitude = "CAN_Input.Current_Latitude" ; ///< float RX Vehicle.Position.CurrentLatitude
|
|
static std::string dsFCurrentLongitude = "CAN_Input.Current_Longitude" ; ///< float RX Vehicle.Position.CurrentLongitude
|
|
static std::string dsBHeadlightLowBeam = "CAN_Output.HeadLight_LowBeam"; ///< bool TX Vehicle.Body.Light.Front.Lowbeam
|
|
} // headlight
|
|
#endif
|
|
#endif
|
|
|
|
#endif // ! defined SIGNAL_NAMES_H
|
|
|