3 #include <boost/interprocess/sync/named_mutex.hpp>
6 #include <boost/interprocess/managed_shared_memory.hpp>
7 #include <boost/interprocess/sync/named_mutex.hpp>
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);
57 std::string spi_device_;
66 boost::interprocess::named_mutex named_mtx_{boost::interprocess::open_or_create,
"multiplexer_mtx"};
67 uint16_t mux_selector_pin_1_;
68 uint16_t mux_selector_pin_2_;
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