summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-04-21 18:20:55 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-04-21 18:20:55 +0200
commit98766025818904420be6088e60453b885a05e9d7 (patch)
treec498a11cf7aa7e56eae1954adfdb324ee46cd472
parent20c0dec8fd46f14c95618b7baed16c3c828ad530 (diff)
Adding some comments
Change-Id: Ic47e808a0da94f79ca0341d1b4f46a02eef3fe84 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--CAN-binder/low-can-binding/configuration.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/CAN-binder/low-can-binding/configuration.hpp b/CAN-binder/low-can-binding/configuration.hpp
index c0a75e9..a3ab8ca 100644
--- a/CAN-binder/low-can-binding/configuration.hpp
+++ b/CAN-binder/low-can-binding/configuration.hpp
@@ -47,10 +47,10 @@ class configuration_t
diagnostic_manager_t diagnostic_manager_; ///< Diagnostic manager use to manage diagnostic message communication.
uint8_t active_message_set_ = 0; ///< Which is the active message set ? Default to 0.
- std::vector<can_message_set_t> can_message_set_;
- std::vector<std::vector<can_message_definition_t>> can_message_definition_;
- std::vector<std::vector<can_signal_t>> can_signals_;
- std::vector<std::vector<diagnostic_message_t>> diagnostic_messages_;
+ std::vector<can_message_set_t> can_message_set_; ///< Vector holding all message set from JSON signals description file
+ std::vector<std::vector<can_message_definition_t>> can_message_definition_; ///< Vector of vector holding all can message definition from JSON signals description file. This describe a CAN message. First vector map to message set
+ std::vector<std::vector<can_signal_t>> can_signals_; ///< Vector of vector holding all can signasl from JSON signals description file. A CAN signal is a part of a CAN message. First vector map to message set
+ std::vector<std::vector<diagnostic_message_t>> diagnostic_messages_; ///< Vector of vector holding all diagnostics messages from JSON signals description file. First vector map to message set
configuration_t(); ///< Private constructor with implementation generated by the AGL generator.