diff options
author | Arthur Guyader <arthur.guyader@iot.bzh> | 2019-07-29 12:19:13 +0200 |
---|---|---|
committer | Arthur Guyader <arthur.guyader@iot.bzh> | 2019-08-12 15:06:45 +0200 |
commit | 88077fb4b383cf7f35093b6cc0d2d9d86c6f1bf3 (patch) | |
tree | ae7df9ff1f6981c629bb4456ae8d17fc383e71ef /low-can-binding/can/message-definition.hpp | |
parent | 8c0a3d45ca37f710100afab065b07e82682dc1ef (diff) |
Add feature to build messages and fix some functions
Allows to build a message (J1939,BCM) with a signal and a value.
Bug-AGL: SPEC-2386
Signed-off-by: Arthur Guyader <arthur.guyader@iot.bzh>
Change-Id: Iadca13a927ff83f713f39da441c88356695a1285
Diffstat (limited to 'low-can-binding/can/message-definition.hpp')
-rw-r--r-- | low-can-binding/can/message-definition.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/low-can-binding/can/message-definition.hpp b/low-can-binding/can/message-definition.hpp index 1773e6b8..f39bb71e 100644 --- a/low-can-binding/can/message-definition.hpp +++ b/low-can-binding/can/message-definition.hpp @@ -86,6 +86,8 @@ public: bool is_fd() const; bool is_j1939() const; std::vector<std::shared_ptr<signal_t>>& get_signals(); + uint32_t get_length() const; + message_format_t get_format() const; void set_parent(std::shared_ptr<message_set_t> parent); void set_last_value(std::shared_ptr<message_t> m); |