Skip to content

Commit

Permalink
make sure we are setting sensor id
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed May 21, 2024
1 parent 7588c0f commit 4f91a00
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions include/sensors/core/tasks/capacitive_driver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,19 @@ class FDC1004 {
auto get_sensor_id() -> can::ids::SensorId { return sensor_id; }

auto set_sensor_id(can::ids::SensorId _id) -> void {
if (shared_sensor && sensor_id != _id) {
if (_id == can::ids::SensorId::S1) {
measure_mode = fdc1004::MeasureConfigMode::TWO;
} else {
measure_mode = fdc1004::MeasureConfigMode::ONE;
}
if (sensor_id != _id) {
// we should always update the sensor id
sensor_id = _id;
update_capacitance_configuration();
if (shared_sensor) {
// if we're sharing the sensor, then we need to update
// the measure mode
if (_id == can::ids::SensorId::S1) {
measure_mode = fdc1004::MeasureConfigMode::TWO;
} else {
measure_mode = fdc1004::MeasureConfigMode::ONE;
}
update_capacitance_configuration();
}
}
}

Expand Down

0 comments on commit 4f91a00

Please sign in to comment.