Advanced Search

Search Results (Searched for: )

  • mariusl
  • mariusl's Avatar
17 Dec 2024 13:56 - 17 Dec 2024 14:07
QTPlasmaC - QTVCP error was created by mariusl

QTPlasmaC - QTVCP error

Category: Plasmac

 

File Attachment:

File Name: linuxcnc_r...2-17.txt
File Size:13 KB
 

File Attachment:

File Name: linuxcnc_info.txt
File Size:4 KB
 

File Attachment:

File Name: linuxcnc_info.txt
File Size:4 KB
HiI am running on Bookworm and trying to setup QTPlasmaC. My repository is pointed at builsdbot2.highlab.com as the master on buildbot.linuxcnc.org seems to be broken with no release information.This is the error I get.
Traceback (most recent call last):File "/usr/bin/qtvcp", line 596, in <module>_qtvcp = QTVCP()^^^^^^^File "/usr/bin/qtvcp", line 327, in __init__window.handler_instance.initialized__()File "/usr/share/qtvcp/screens/qtplasmac/qtplasmac_handler.py", line 377, in initialized__self.init_preferences()File "/usr/share/qtvcp/screens/qtplasmac/qtplasmac_handler.py", line 1024, in init_preferencesTOOLTIPS.tool_tips_changed(self, self.w)File "/usr/lib/python3/dist-packages/qtvcp/lib/qtplasmac/tooltips.py", line 32, in tool_tips_changedset_tool_tips(P, W)File "/usr/lib/python3/dist-packages/qtvcp/lib/qtplasmac/tooltips.py", line 196, in set_tool_tipsW.pause.setToolTip(_translate('ToolTips', 'Pauses or resume the currently running G-Code program'))^^^^^^^AttributeError: 'VCPWindow' object has no attribute 'pause' 
  • JT
  • JT's Avatar
17 Dec 2024 13:25
Replied by JT on topic Large File Memory

Large File Memory

Category: Other User Interfaces

Change end = 60.00001 to end = 100.00001 and it generates a 198MB file that also loads in a second and runs fine. So the key slowdown is trying to load a file that size into a QPlainTextEdit. I assume but have not tested that the plotter will cause it to be very slow to load.



JT
  • JT
  • JT's Avatar
17 Dec 2024 13:20
Replied by JT on topic Large File Memory

Large File Memory

Category: Other User Interfaces

I created a Flex GUI without a gcode preview or the plotter and it loads and runs a 118MB file with no problems.

I created a test file with this bit of python code
#!/usr/bin/env python3

current = 0.00001
increment = 0.00001
end = 60.00001
nc = []
nc.append('G0 X0.0000 Y0.0000\n')
while current < end:
	nc.append(f'X{current:.5f} Y{current:.5f}\n')
	current += increment
nc.append('M2')
with open('large.ngc', 'w') as f:
	f.writelines(nc)

JT
  • Unlogic
  • Unlogic
17 Dec 2024 13:19

Specified probe tool not in spindle error after upgrade

Category: QtPyVCP

I recently did an upgrade of Probe Basic and LinuxCNC, here are the versions I upgraded from and to.

linuxcnc-uspace/linuxcnc 1:2.9.3 amd64 [upgradable from: 1:2.9.2]
python3-qtpyvcp/stable 4.1.2 all [upgradable from: 4.0-124.dev]
python3-probe-basic/stable 0.6.0 all [upgradable from: 0.5.3-219.dev]

After doing this upgrade and updating the corresponding Probe Basic configuration files I've come across an odd error relating to probing.

When I try to do any probing I get the following error message even though I already have to correct tool loaded.

 

 

If I re-enter the value "1" in the "Probe tool" field under "Probing parameters" everything works again until I restart Probe Basic.
  • Lcvette
  • Lcvette's Avatar
17 Dec 2024 13:05
Replied by Lcvette on topic Probe Basic do not start

Probe Basic do not start

Category: QtPyVCP

here, check over all of your hal for duplications, a realtime component must only be loaded once in a single hal file, preferably the main hal since it is loaded first.

 
  • Lcvette
  • Lcvette's Avatar
17 Dec 2024 12:58 - 17 Dec 2024 12:59
Replied by Lcvette on topic Probe Basic do not start

Probe Basic do not start

Category: QtPyVCP

[qtpyvcp.app.launcher][[36mINFO[0m]  Loading POSTGUI_HALFILE: /home/cnc/linuxcnc/configs/Black_Phanter/postgui.hal (launcher.py:98)
not: already exists

not
^^^ already exists, looks like maybe you are trying to load it twice in different locations
  • Cant do this anymore bye all
  • Cant do this anymore bye all's Avatar
17 Dec 2024 12:52
Replied by Cant do this anymore bye all on topic LinuxCNC on Raspberry Pi 5

LinuxCNC on Raspberry Pi 5

Category: Installing LinuxCNC

Sorry forgot to clarify, from sd card to archive image.

[begin_off_topic_rant]
I can't stand wearing jeans or any long pants, why they insist we wear long sleeve shirts and long pants is the Aussie summer is beyond me, then they have a big song & dance about heat stress and keeping liquids up.

Funny thing the shunters on the rail said long pants were a safety issue and dont have to.
And don't get me started on having a ruptured disc diagnosed as a pulled muscle.
[end_off_topic_rant]
  • meister
  • meister
17 Dec 2024 12:52

LinuxCNC-RIO - RealtimeIO for LinuxCNC based on FPGA (ICE40 / ECP5)

Category: Computers and Hardware

are you using sudo ??? do not !

go into the Gateware folder:
cd Output/TangNano9K/Gateware

and type make:
make

then type (to check again):
gw_sh

I am really at a loss
  • Cant do this anymore bye all
  • Cant do this anymore bye all's Avatar
17 Dec 2024 12:40 - 19 Dec 2024 22:22
Replied by Cant do this anymore bye all on topic Raspberry Pi 5 with 7c81 WORKING!

Raspberry Pi 5 with 7c81 WORKING!

Category: Driver Boards

Well after finally working out my chinese dev board was dead, second one that has failed, I loaded a Numato Mimas Spartan 6 board with 7c81 firmware modded to suit and can confirm RPi5 communicates. To make things more fun the CE0 line on my Pi is not playing so had to swap over to CE1.

So after 12 months of bitching & carrying on I'm a happy camper.

Now time to design & build some interface boards. Yay!

Quick update, the Chinese dev board is not at fault, it was the usb-blaster programmer I was using (was constantly incorrectly identifying the flash chip and programming the sram had issues as well), switching to a FT2232 based programmer allowed resuming of programming the above mentioned board. No need to design interface boards.

With regards to the "firmware=hm2/7c81/G540X2.BIT" this is not required as the 7c8* & 7i* boards have the firmware programmed into flash that retains the firmware during power off. The firmware is programmed once and only reprogrammed when you require a new configuration.
  • epineh
  • epineh
17 Dec 2024 12:22

LinuxCNC-RIO - RealtimeIO for LinuxCNC based on FPGA (ICE40 / ECP5)

Category: Computers and Hardware

So I can run gw_sh from anywhere, I also edited my .bashrc to make the PATH permanent.
Here is the terminal text, it is still saying it cant see the gowin path, interesting the first line saying XDG_RUNTIME_DIR is not set, I have no idea what that is but it doesn't sound good...

QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
loading config: riocore/configs/TangNano9K/config.json
loading board: /home/gus/riocore/./riocore/boards/TangNano9K/board.json
rm -rf rio.fs rio.json rio_pnr.json rio.tcl abc.history impl
gw_sh rio.tcl
make: gw_sh: No such file or directory
make: *** [Makefile:34: impl/pnr/project.fs] Error 127
loading: riocore/configs/TangNano9K/config.json
loading board setup: TangNano9K
loading toolchain gowin
writing gateware to: Output/TangNano9K/Gateware
!!! gateware changed: needs to be build and flash |||
WARNING: can not found toolchain installation in PATH: gowin (gw_sh)
  example: export PATH=$PATH:/opt/gowin/IDE/bin
writing linuxcnc files to: Output/TangNano9K/LinuxCNC
rm -rf rio.fs rio.json rio_pnr.json rio.tcl abc.history impl
gw_sh rio.tcl
make: gw_sh: No such file or directory
make: *** [Makefile:34: impl/pnr/project.fs] Error 127

 
  • agima2
  • agima2
17 Dec 2024 12:15
Replied by agima2 on topic Linux CNC auf Virtualbox Simulation

Linux CNC auf Virtualbox Simulation

Category: Deutsch

Hallo tommylight,

war mir nicht bewust, das ich jemanden gemeldet haben soll. Wüsste auch nicht wie das zustandegekommen ist.
Falls ich mich verklickt haben sollte, so war das keine Absicht. Mir sind die Button. "Quick Replay" und "Replay" nicht richtig klar.
Wan verwende ich was?

MfG.
Displaying 21796 - 21806 out of 21806 results.
Time to create page: 0.996 seconds
Powered by Kunena Forum