Advanced Search

Search Results (Searched for: )

  • rickjmain
  • rickjmain
17 Jun 2025 00:54
Replied by rickjmain on topic Error finishing read... *sigh*

Error finishing read... *sigh*

Category: Computers and Hardware

No idea if I did anything wrong, but after I applied that line from above and rebooted, Debian won’t launch the desktop environment anymore. I can manually start xfce. Never mind 

Did you get xfce to start automatically at boot again?  If so what did you need to do?
below is what my Grub file looks like, if there is something in here i can change, please let me know:
GRUB_CMDLINE_LINUX_DEFAULT="quiet isolcpus= 3 pcie.aspm=0 r8125.eee_enable=0  modprobe.blacklist=r8169 pcie_aspm=off idle=poll"
GRUB_CMDLINE_LINUX=""

These changes worked great by the way.  I can't thank everyone enough. I went from 10ms max ping down to 0.105ms
  • DMNZ
  • DMNZ
17 Jun 2025 00:09

Xilinx Zynq 7010 fpga crypto windfall boards

Category: Driver Boards

Hi All,

i can see there are many different FPGA boards has been adopted for LinuxCNC but for some reason no one is using this one (or similar) - EBAZ4205

This is Xilinx Zynq 7010 fpga pcb mass produced for crypto mining which makes them very cheap (under 20usd) and readily available (even at amazon).

 

Looks like it has all that is needed -  2 cores, decent fpga fabric, accessible jtag, uart, sdcard, 100mb Ethernet, lots of IO pins and even schematics are available:

github.com/xjtuecho/EBAZ4205/blob/master...205/EBAZ4205-SCH.pdf

any ideas why it has not been adopted for CNC?

for a commercial work i would still most probably prefer MESA due to its quality and support, but for cheap home automation it looks like much better fit than LED control cards or STM32 boards.
  • Lcvette
  • Lcvette's Avatar
16 Jun 2025 23:39

Probe Basic Not Remembering Current Pocket Number

Category: QtPyVCP

Have you added the appropriate parameters in the car file for pockets and atc parameter function storing? Have you adjusted the macros for your atc pocket count for the calculations? What version of probe basic are you using?

Do you have a GitHub with your files where I can review them all?
  • GubbyMcDubby
  • GubbyMcDubby's Avatar
16 Jun 2025 22:24
Disable probe on plasmac was created by GubbyMcDubby

Disable probe on plasmac

Category: Plasmac

hi all 
im new here and i'm currently in school (mechanical engineering), we're making an plasma table for this semester project. as of right now we're almost done and during some test on it tho we cant figure out how to disable the probe when we start an test, we have made our setup so that it hits the material on the table and makes that the home, and then in the materials we have told it what hights it should cut it, so we dont need the probe, also atm. we dont have the waterbed on the table yet so we're trying to make the test up in the air.

 
  • djones@burketruck.com
  • djones@burketruck.com
16 Jun 2025 21:25
Probe Basic Not Remembering Current Pocket Number was created by djones@burketruck.com

Probe Basic Not Remembering Current Pocket Number

Category: QtPyVCP

We are just finishing up our linuxcnc retrofit with Probe Basic on our Mazak VTC16B. Everything seems to work just fine, except we are having an issue with the controller not keeping track of the current pocket number (Parameter #3990). The machine has a 24 position index style carousel ATC. It indexes correctly and on the first try after indexing, it will grab or store the appropriate tool in the appropriate pocket using M6 commands. After the first toolchange though, it's almost as if the controller resets itself as starting from Pocket 1. The GUI shows the correct pocket that is supposed to be used. 

For example, if we start with Tool 3 in our spindle, Pocket 3 empty, Tools 2 & 3 in pockets 2&3; just after indexing if we store Tool 3 in carousel, it will rotate to pocket 3 and store the tool. If we then run a M6 T2, instead of rotating -1 pocket to grab T2, it will rotate +1 pocket, as if it were starting back at pocket 1. When doing this, the GUI shows pocket 3 being the active pocket and rotating +1 to pocket 4.

I'm assuming it has something to do with parameter 3990 not being updated or called out properly. We had to make some changes to the default config to make it all work with our machine. I've attached some of the proper config files, would somebody be able to provide any insight on where to start diagnosing this?
  • pgf
  • pgf
16 Jun 2025 21:24

M6 shuts off spindle, but no UI confirmation, and program doesn't pause

Category: Basic Configuration

Okay, well I don't _completely_ understand, but...

There's a competition going on between the M6 command, and the M3 that happens just before it. If I reverse the order, to "M6 M3", then all is fine.

And the answer probably lies in my quirky handling of M3.

I run my machine from an RPi. As I've written elsewhere, spindle_enable is connected to a Pi GPIO output pin. That output pin is connected directly to a Pi input pin. I have a script in which gpiomon watches that pin, and starts and stops the spindle based on its transitions. It handles stop pretty directly. But when starting, it first drops the atspeed signal, then puts up a dialog asking me if it's okay to start the spindle. If I cancel, it runs "halcmd setp halui.machine.off false" to shut things off. If I hit okay, it activates the smart plug, and a couple of seconds later enables at-speed, using "halcmd sets spindle-at-speed true". I know that all sounds like a lot of chewing gum and string, but I like being explicitly asked whether I want the spindle that's about a foot away from my face to start up. (I also like it turning off automatically at the end of the job.)

Anyway... somewhere in there, if the M6 follows the M3, the spindle goes off after being turned on. It's complicated further because at-speed doesn't fully pause the program -- it will keep running until it hits a G1. So the M6 happens while at-speed is low.

It's now making my brain hurt a little. I'll just be sure there are no M6 commands in my g-code from now on.
  • jtrantow
  • jtrantow
16 Jun 2025 20:08

Interface to LightBurn (is pylib a better choice).

Category: General LinuxCNC Questions

I started github.com/JTrantow/LightBurn_to_LinuxCNC. Currently it just sketches out the idea. No code added yet.
I can add you as a Github collaborator.
 
  • pgf
  • pgf
16 Jun 2025 19:59

M6 shuts off spindle, but no UI confirmation, and program doesn't pause

Category: Basic Configuration

Oh! (replying to myself)

Reading the source for hal_manualtoolchange, I see that it's also his window is part of the AXIS manual toolchanger.the program responsible for the "This window is part of the AXIS manual toolchanger." window that shows up when I start Axis. I hadn't made the connection before. Lately that window has been appearing mostly off-screen, in a way that I can't read it. Since I always ignore it, I didn't worry about it. But now I wonder if whatever is causing that is also messing with the confirmation dialog somehow.

Clearly something to investigate.

paul
  • pgf
  • pgf
16 Jun 2025 19:39

M6 shuts off spindle, but no UI confirmation, and program doesn't pause

Category: Basic Configuration

I broke a brand new (happily inexpensive!) bit today.  Right after program start, the spindle shut down, and the work kept going.  I hit E-stop, but not in time.

The culprit was code generated by kirimoto, which contained an M6 for an initial tool change.  I missed it when configuring kirimoto -- that M6 shouldn't have been there -- but even so, it should have paused.

It's reproducible -- M6 shuts down the spindle, but the program keeps going.

I use hal_manualtoolchange, set up pretty much by the book:
#  ---manual tool change signals---

net tool-change-request    <= iocontrol.0.tool-change
net tool-change-confirmed  => iocontrol.0.tool-changed
net tool-number            <= iocontrol.0.tool-prep-number

#  ---Use external manual tool change dialog---

loadusr -W hal_manualtoolchange
net tool-change-request    =>  hal_manualtoolchange.change
net tool-change-confirmed  <=  hal_manualtoolchange.changed
net tool-number            =>  hal_manualtoolchange.number

#  ---ignore tool prepare requests---
net tool-prepare-loopback   iocontrol.0.tool-prepare      =>  iocontrol.0.tool-prepared

The only mention of tools in the .ini is "TOOL_TABLE = tool.tbl" in EMCIO.

I ran halshow, watching the hal_manualtoolchange pins, and the ioctrontrol tool-* pins.  The iocontrol.0.tool-prepare/prepared loopback flashes on briefly when I hit M6, but that's the only change I can see.  (I didn't use halscope.)

Any ideas?  Am I missing some config?
 
  • Beovoxo
  • Beovoxo
16 Jun 2025 16:37 - 16 Jun 2025 16:37
Replied by Beovoxo on topic Deckel FP4A Retrofit

Deckel FP4A Retrofit

Category: Milling Machines

Got the right color :) RAL6011 
 
  • JT
  • JT's Avatar
16 Jun 2025 15:56
Replied by JT on topic Flex GUI 1.2.1 Released

Flex GUI 1.2.1 Released

Category: Other User Interfaces

Here's a video of adding images to pushbuttons should be similar for labels.



JT
  • my1987toyota
  • my1987toyota's Avatar
16 Jun 2025 15:27 - 02 Jul 2025 10:25
Replied by my1987toyota on topic Linux vs Windows value

Linux vs Windows value

Category: Off Topic and Test Posts

Any Government that supports / allows Windows OS and especially it's servers in there country.
  • scotth
  • scotth
16 Jun 2025 15:05
Replied by scotth on topic Linux vs Windows value

Linux vs Windows value

Category: Off Topic and Test Posts

What government??
  • SebastianM
  • SebastianM
16 Jun 2025 14:48
Replied by SebastianM on topic Email Notification?

Email Notification?

Category: Forum Questions

When I write a reply I always tick the box “check this box to be notified of replies to this topic”, but I just don’t get any emails.
  • my1987toyota
  • my1987toyota's Avatar
16 Jun 2025 14:15
Replied by my1987toyota on topic Linux vs Windows value

Linux vs Windows value

Category: Off Topic and Test Posts

The Windows 11 slogan should be " We aren't spying for the Government honest." 
Displaying 1456 - 1470 out of 25071 results.
Time to create page: 0.286 seconds
Powered by Kunena Forum