Skip to content

Commit

Permalink
Fixed test_script_command_interface
Browse files Browse the repository at this point in the history
  • Loading branch information
URJala committed Jul 9, 2024
1 parent 48eea48 commit 98cc34c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_script_command_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,10 @@ TEST_F(ScriptCommandInterfaceTest, test_force_mode)
urcl::vector6d_t wrench = { 20, 0, 40, 0, 0, 0 };
int32_t force_mode_type = 2;
urcl::vector6d_t limits = { 0.1, 0.1, 0.1, 0.785, 0.785, 1.57 };
script_command_interface_->startForceMode(&task_frame, &selection_vector, &wrench, force_mode_type, &limits);
float damping = 0.8;
float gain_scaling = 0.8;
script_command_interface_->startForceMode(&task_frame, &selection_vector, &wrench, force_mode_type, &limits, damping,
gain_scaling);

int32_t command;
std::vector<int32_t> message;
Expand Down

0 comments on commit 98cc34c

Please sign in to comment.