Joint Level Control
hall_sensor.h
1 #ifndef HALL_SENSOR_H
2 #define HALL_SENSOR_H
3 #include <boost/interprocess/sync/named_mutex.hpp>
4 #include <string>
5 
6 #include <boost/interprocess/managed_shared_memory.hpp>
7 #include <boost/interprocess/sync/named_mutex.hpp> // Mutex!
8 
9 #include "joint_level_control/hall_sensor/swing_sensor_rosinterface.h" // implements the spi read, also defines error flags
10 
30 {
31 public:
36  HallSensor(const std::string& spi_device, uint8_t spi_cs_id, uint8_t spi_mode, uint8_t spi_bits, uint32_t spi_speed, uint16_t spi_delay, double zero_point, uint16_t mux_sel_pin_1, uint16_t mux_sel_pin_2);
37  ~HallSensor();
43  double getValue();
47  void setZeroPoint();
54  uint8_t getErrors();
55 
56 private:
57  std::string spi_device_; // file which controls spi device
58  uint8_t spi_cs_id_; // address of sensor in spi. This is used in the multiplexer pins
59  uint8_t spi_mode_;
60  uint8_t spi_bits_;
61  uint32_t spi_speed_;
62  uint16_t spi_delay_;
63  double zero_point_ ;
64  uint8_t error_; // contains the error flags for different errors of the sensor
65 
66  boost::interprocess::named_mutex named_mtx_{boost::interprocess::open_or_create, "multiplexer_mtx"};
67  uint16_t mux_selector_pin_1_; // 1st multiplexer selector pin for the chip select line
68  uint16_t mux_selector_pin_2_; // 2nd multiplexer selector pin for the chip select line
69 
70 };
71 
72 
73 #endif
This class abstracts the communication with the sensors measuring the state of the swingjoints.
Definition: hall_sensor.h:30
double getValue()
Reads the Angle of the HallSensor.
Definition: hall_sensor.cpp:51
HallSensor(const std::string &spi_device, uint8_t spi_cs_id, uint8_t spi_mode, uint8_t spi_bits, uint32_t spi_speed, uint16_t spi_delay, double zero_point, uint16_t mux_sel_pin_1, uint16_t mux_sel_pin_2)
Constructor of the HallSensor class.
Definition: hall_sensor.cpp:11
uint8_t getErrors()
Returns errors of last read.
Definition: hall_sensor.cpp:96
void setZeroPoint()
Sets the next Angle sent from the Sensor as the new zero_point_ for the angles.
Definition: hall_sensor.cpp:43