Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Choose different read and write rate for the hardware components #1570

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update the state of the system test component similar to actuator tes…
…t component
  • Loading branch information
saikishor committed Jul 8, 2024
commit 31ef85e7906e3a69cf016378a64e5aaaef5e3267
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,12 @@ class TestSystem : public SystemInterface
{
return return_type::DEACTIVATE;
}
// The next line is for the testing purposes. We need value to be changed to
// be sure that the feedback from hardware to controllers in the chain is
// working as it should. This makes value checks clearer and confirms there
// is no "state = command" line or some other mixture of interfaces
// somewhere in the test stack.
velocity_state_[0] = velocity_command_[0] / 2.0;
return return_type::OK;
}

Expand Down