We want to control the robot with speedj commands and occasionally use force_mode to push against things with a certain force.
The way we (want to) do this:
- We connect via the RTDE interface and send over F/T data.
- Via the realtime client interface (port 30003) we:
- a) send over a script that runs a thread which connects via a socket back to our architecture and pulls data.
- b) run force_mode with this data.
- We send over speedj commands via the real time client interface (30003) continuously to control the robot.
However as soon as a speedj command is sent in step 3, the socket connection established in step 2 closes and force_mode is not active anymore (although the log does not show that it went out of force_mode).
The script we send over in step 2 is the following:
def force_test():
textmsg("Starting")
socket_open("192.168.100.1", 7654, "stream")
enable_external_ft_sensor(True, sensor_mass = 0.2, sensor_measuring_offset = [0.0, 0.0, 0.0], sensor_cog = [0.0, 0.0, 0.0175])
thread Force_properties_calculation_thread_1():
while(True):
f = socket_read_ascii_float(6, "stream")
s = socket_read_ascii_float(6, "stream")
w = socket_read_ascii_float(6, "stream")
t = socket_read_ascii_float(1, "stream")
l = socket_read_ascii_float(6, "stream")
force_mode(p[f[1],f[2],f[3],f[4],f[5],f[6]], [s[1],s[2],s[3],s[4],s[5],s[6]], [w[1],w[2],w[3],w[4],w[5],w[6]], t[1], [l[1],l[2],l[3],l[4],l[5],l[6]])
sync()
end
end
global thread_handler_1 = run Force_properties_calculation_thread_1()
while(True):
sync()
end
kill thread_handler_1
end_force_mode()
end
Whenever I send out just one speedj command after this connection has been established the connection is lost.
Both elements work individually: We can send out speedj very reliably at 125 Hz and we can enable force_mode and control its parameters from outside. It is only that if we combine those two it breaks.
So the question is: How can we continuously send out speedj commands while controlling force_mode parameters from outside?