Skip to content

Commit 456741c

Browse files
committed
Fix method name to comply with CSG
1 parent 45398bd commit 456741c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/external_fts_through_rtde.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ void ftInputTui()
164164
}
165165
}
166166

167-
void RTDEWorker(const int second_to_run)
167+
void rtdeWorker(const int second_to_run)
168168
{
169169
g_my_robot->startRTDECommununication(false);
170170

@@ -239,7 +239,7 @@ int main(int argc, char* argv[])
239239

240240
// The RTDE thread sends the force-torque data to the robot and receives the wrench data from the
241241
// robot.
242-
std::thread rtde_thread(RTDEWorker, second_to_run);
242+
std::thread rtde_thread(rtdeWorker, second_to_run);
243243

244244
// Modify the artificial force-torque input through keyboard input
245245
ftInputTui();

0 commit comments

Comments
 (0)