Add gitlab issue/merge request templates
[apps/agl-service-can-low-level.git] / low-can-binding / can / message / message.hpp
index db06eb3..6416bcf 100644 (file)
 #include <memory>
 #include <linux/can.h>
 #include <linux/can/bcm.h>
-#include "../../utils/timer.hpp"
-
-#define CAN_MESSAGE_SIZE 8
-
-#define MAX_BCM_CAN_FRAMES 257
-#define MAX_ISOTP_FRAMES 4096
-
-
-/**
- * FLAGS
- */
-
-#define INVALID_FLAG 0x0001
-#define STANDARD_ID 0x0002
-#define EXTENDED_ID 0x0004
-#define BCM_PROTOCOL 0x0008
-#define J1939_PROTOCOL 0x0010
-#define J1939_ADDR_CLAIM_PROTOCOL 0x0020
-#define ISOTP_PROTOCOL 0x0040
-#define ISOTP_SEND 0x0080
-#define ISOTP_RECEIVE 0x0100
-#define FD_FRAME 0x0800
+#include <low-can/can-message.hpp>
 
 /// @class message_t
 ///
@@ -55,7 +34,7 @@ class message_t {
 protected:
        uint32_t maxdlen_; ///< maxdlen_ - Max data length deduce from number of bytes read from the socket.*/
        uint32_t length_; ///< length_ - the length of the data array. */
-       uint32_t flags_; ///< format_ - the format mask of the message*/
+       uint32_t flags_; ///< format_ - the format mask of the message that control which socketcan will used*/
        std::vector<uint8_t> data_; ///< data_ - The message's data field with a size of 8 which is the standard about CAN bus messages.*/
        uint64_t timestamp_; ///< timestamp_ - timestamp of the received message*/
        int sub_id_; ///< sub_id_ - Subscription index. */
@@ -68,7 +47,6 @@ public:
        int get_sub_id() const;
        const uint8_t* get_data() const;
        const std::vector<uint8_t> get_data_vector() const;
-       const std::vector<uint8_t> get_data_vector(int start,int end) const;
        uint32_t get_length() const;
        uint64_t get_timestamp() const;
 
@@ -85,4 +63,5 @@ public:
        uint32_t get_maxdlen();
        void set_maxdlen(uint32_t maxdlen);
        void set_length(uint32_t length);
+       void frame_swap();
 };