From 49fe0eec8f17698fc5f86d0abe01777af1fb2b23 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Fri, 14 Apr 2017 13:24:07 +0200 Subject: Change directory architecture to use 2 separated projects. Each projects, binder and generator, has to be compiled separatly. CAN-binder will host high and low level binding CAN-config-generator only the generator used for low level binding. build.sh script just launch both build in their respective dir. Change-Id: Ic77932660fcca507b23a631d4e4e790f608880ae Signed-off-by: Romain Forlot --- CAN-config-generator/src/openxc/signal.hpp | 53 ++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100755 CAN-config-generator/src/openxc/signal.hpp (limited to 'CAN-config-generator/src/openxc/signal.hpp') diff --git a/CAN-config-generator/src/openxc/signal.hpp b/CAN-config-generator/src/openxc/signal.hpp new file mode 100755 index 00000000..64dba75e --- /dev/null +++ b/CAN-config-generator/src/openxc/signal.hpp @@ -0,0 +1,53 @@ +#pragma once + +#include +#include +#include +#include +#include + +namespace openxc +{ + class signal + { + private: + std::string id_; + std::string generic_name_; + std::uint32_t bit_position_; + std::uint32_t bit_size_; + float factor_; + std::uint32_t offset_; + std::string decoder_; + bool ignore_; + bool enabled_; + std::map> states_; + float max_frequency_; + bool send_same_; + bool force_send_changed_; + bool writable_; + std::string encoder_; + public: + std::string id() const; + void id(const std::string& id); + std::string generic_name() const; + std::uint32_t bit_position() const; + std::uint32_t bit_size() const; + float factor() const; + std::uint32_t offset() const; + std::string decoder() const; + bool ignore() const; + bool enabled() const; + const std::map>& states() const; + float max_frequency() const; + bool send_same() const; + bool force_send_changed() const; + bool writable() const; + std::string encoder() const; + + void from_json(const nlohmann::json& j); + nlohmann::json to_json() const; + }; + + void to_json(nlohmann::json& j, const signal& p); + void from_json(const nlohmann::json& j, signal& p); +} -- cgit 1.2.3-korg