Skip to content

Commit

Permalink
chore(robosense): remove todos for reading return mode from DIFOP
Browse files Browse the repository at this point in the history
config file can be used as well, for now. Once setting return modes becomes possible (robosense publishes communication API for sensor) this must be revised
  • Loading branch information
mojomex committed Dec 28, 2023
1 parent a575ad3 commit 2fcfef1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class BpearlV4 : public SensorBase<BpearlV4Packet>,
ReturnMode getReturnMode(
const packet_t & /* packet */, const SensorConfigurationBase & config) const override
{
return config.return_mode; // TODO(mojomex): add DIFOP packet handling back in
return config.return_mode;
}
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ class Helios
ReturnMode getReturnMode(
const packet_t & /* packet */, const SensorConfigurationBase & config) const override
{
return config.return_mode; // TODO(mojomex): add DIFOP packet handling back in
return config.return_mode;
}
};

Expand Down

0 comments on commit 2fcfef1

Please sign in to comment.