write: Add feature to build messages and fix some functions
[apps/agl-service-can-low-level.git] / low-can-binding / can / message / can-message.hpp
index 76515d8..8bc9aab 100644 (file)
@@ -39,20 +39,22 @@ class can_message_t : public message_t {
 
        public:
                can_message_t();
-               can_message_t(uint32_t maxdlen, uint32_t id, uint32_t length, message_format_t format, bool rtr_flag_, uint32_t flags, std::vector<uint8_t>& data, uint64_t timestamp);
+               can_message_t(  uint32_t maxdlen,
+                                               uint32_t id,
+                                               uint32_t length,
+                                               bool rtr_flag_,
+                                               uint32_t flags,
+                                               std::vector<uint8_t>& data,
+                                               uint64_t timestamp);
 
                uint32_t get_id() const;
+               void set_id(const canid_t id);
 
                static std::shared_ptr<can_message_t> convert_from_frame(const canfd_frame& frame, size_t nbytes, uint64_t timestamp);
                struct canfd_frame convert_to_canfd_frame();
                struct std::vector<canfd_frame> convert_to_canfd_frame_vector();
-               struct can_frame convert_to_can_frame();
-
-               bool is_correct_to_send();
-               bool is_set();
-               struct bcm_msg get_bcm_msg();
+               struct bcm_msg& get_bcm_msg();
                void set_bcm_msg(struct bcm_msg bcm_msg);
 
                std::string get_debug_message();
-
 };