cmake: fix lib not populated and RPATH usage
[apps/agl-service-can-low-level.git] / low-can-binding / can / signals.hpp
old mode 100644 (file)
new mode 100755 (executable)
index 2fcc27e..5f14375
@@ -60,6 +60,14 @@ typedef openxc_DynamicField (*signal_decoder)(signal_t& signal, std::shared_ptr<
 typedef uint64_t (*signal_encoder)(signal_t& signal,
                 const openxc_DynamicField& field, bool* send);
 
+enum sign_t
+{
+               UNSIGNED = 0,
+               SIGN_BIT = 1,
+               ONES_COMPLEMENT = 2,
+               TWOS_COMPLEMENT = 3,
+               SIGN_BIT_EXTERN = 4
+};
 
 class signal_t
 {
@@ -96,12 +104,15 @@ private:
        bool received_; /*!< received_ - True if this signal has ever been received.*/
        float last_value_; /*!< lastValue_ - The last received value of the signal. If 'received' is false,
                                * this value is undefined. */
-       std::pair<bool,int> multiplex_; /*!< multiplex_ - If bool is false and int is 0 is not a multiplex signal
+       std::pair<bool, int> multiplex_; /*!< multiplex_ - If bool is false and int is 0 is not a multiplex signal
                                                                                If bool is true, that indicate that is a multiplexor
                                                                                If int is different of 0, that indicate the link with a multiplexor */
        bool is_big_endian_; /*!< is_big_endian - True if the signal's data are meant to be read as a big_endian */
-       bool is_signed_; /* !< is_signed_ - True if the data is signed */
+       sign_t sign_; /* !< sign_ - if the data is signed it indicates the encode */
+       int32_t bit_sign_position_; /*!< bit_sign_position_ - The bit that indicates the sign of the signal in its CAN message*/
        std::string unit_; /* !< unit_ - The unit of the data */
+       bool bit_position_is_swapped_; /* !<bit_position_is_swapped_- True if the signal's bit position has been
+                                                                               swapped (refer to converter_t::bit_position_swap()). Default is false.*/
 
 public:
 
@@ -121,9 +132,10 @@ public:
                signal_decoder decoder,
                signal_encoder encoder,
                bool received,
-               std::pair<bool,int> multiplex,
+               std::pair<bool, int> multiplex,
                bool is_big_endian,
-               bool is_signed,
+               sign_t sign,
+               int32_t bit_sign_position,
                std::string unit);
 
 
@@ -162,13 +174,17 @@ public:
        bool get_received() const;
        float get_last_value() const;
        std::pair<float, uint64_t> get_last_value_with_timestamp() const;
-       std::pair<bool,int> get_multiplex() const;
+       std::pair<bool, int> get_multiplex() const;
        bool get_is_big_endian() const;
-       bool get_is_signed() const;
+       sign_t get_sign() const;
+       int32_t get_bit_sign_position() const;
        const std::string get_unit() const;
+       bool bit_position_is_swapped() const;
 
        void set_parent(std::shared_ptr<message_definition_t> parent);
        void set_received(bool r);
        void set_last_value(float val);
        void set_timestamp(uint64_t timestamp);
+       void set_bit_position(uint32_t bit_position);
+       void bit_position_is_swapped_reverse();
 };