Hey, just chipping in here. You could use TCP for Axis also, however, there would be a bit of additional overhead on connections. I've created a little line, called in setup.sh script, that switch from IPC <-> TCP:
echo 'Changing to Remote Mode' sed -r '31 s/([^:]+).*/REMOTE=1/' /etc/linuxcnc/machinekit.ini > /tmp/machinekit.ini.temp sudo mv /tmp/machinekit.ini.temp /etc/linuxcnc/machinekit.ini echo 'Changing to Local Mode (IPC)' sed -r '31 s/([^:]+).*/REMOTE=0/' /etc/linuxcnc/machinekit.ini > /tmp/machinekit.ini.temp sudo mv /tmp/machinekit.ini.temp /etc/linuxcnc/machinekit.ini There is probably a better way to do so, as I am not the most proficient in bash scripting :). As for connection time, the first connection would take a little longer, as your client downloads the QML project and also there probably is a bit of overhead setting up the connection for the first - that is, for the first client. Subsequent connections here usually takes less time. Best regards. Paulo Sherring. Em sábado, 17 de agosto de 2019 02:32:00 UTC-3, Boris Skegin escreveu: > > Well, I actually also use stretch, just mixed it up above with jessie. My > present Qt version is 5.12.4. > > Did you check the examples > https://github.com/machinekit/QtQuickVcp/tree/master/examples ? They seem > to work even in the Designer. > > BTW, do you know how to use ipc instead of tcp in haltalk.ini ? As in my > case I have both the GUI and machinekit installation on the same machine... > > > On Wednesday, August 14, 2019 at 6:54:10 PM UTC+2, Joonas wrote: >> >> I've encountered the same on Debian stretch. The gui works but the qt >> creator seems to fail at importing the SDK so the buttons are not visible. >> I haven't had time to look into it much but it seems that either the >> install location is incorrect or they're missing the designer folder and >> metainfo file as outlined here. >> https://doc.qt.io/qtcreator/creator-qml-modules-with-plugins.html > > -- website: http://www.machinekit.io blog: http://blog.machinekit.io github: https://github.com/machinekit --- You received this message because you are subscribed to the Google Groups "Machinekit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/machinekit/6745fe37-c082-4d2a-bf37-71332a098b18%40googlegroups.com.
