diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-14 13:24:07 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-04-14 13:24:07 +0200 |
commit | 49fe0eec8f17698fc5f86d0abe01777af1fb2b23 (patch) | |
tree | 356cd3e3261934a3fb90786e1789ee4ad001cbe5 /can-config-generator/src/openxc/signal.hpp | |
parent | 044ef27d3667a114964549f89c63ab1ea6655877 (diff) |
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 <romain.forlot@iot.bzh>
Diffstat (limited to 'can-config-generator/src/openxc/signal.hpp')
-rwxr-xr-x | can-config-generator/src/openxc/signal.hpp | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/can-config-generator/src/openxc/signal.hpp b/can-config-generator/src/openxc/signal.hpp deleted file mode 100755 index 64dba75e..00000000 --- a/can-config-generator/src/openxc/signal.hpp +++ /dev/null @@ -1,53 +0,0 @@ -#pragma once
-
-#include <string>
-#include <map>
-#include <vector>
-#include <cstdint>
-#include <json.hpp>
-
-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<std::string, std::vector<std::uint32_t>> 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<std::string, std::vector<std::uint32_t>>& 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);
-}
|