blob: 64dba75efd940818e5f4a13cb6bd40a6fa8fb320 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#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);
}
|