Advanced Search

Search Results (Searched for: )

  • spumco
  • spumco
09 Nov 2024 05:36

[SOLVED] Rigid tapping problem - tristate_bit and index-enable?

Category: General LinuxCNC Questions

Wrapping up my mill rebuild and have run in to another issue.

Tried rigid tapping for the first time tonight and the spindle spun up to speed at the correct Z-height and just sat there spinning.  Obviously waiting for something that didnt happen.

First thought was  the spindle-at-speed signal.  Nope, that signal went high at the appropriate rpm, and stayed on despite a few rpm flutter.

Next culprit I suspect is the encoder index logic.  I know the encoder index signal/pin is working since spindle orient works OK.

Looking through my spindle HAL stuff, I remembered I had to use a tristate_bit pin to get orient functioning.  Because my spindle motor won't reliably orient on its own, I've had to add a pneumatic shot-pin to help stop it at the right spot.

Subroutine below, but basically I have to toggle the tristate_bit on & off, then rotate the spindle a rev or two to set the index.  Once that's set, shot pin is deployed and orient moves the spindle slow-ish until the shot pin drops in place.

Relevant HAL connections:
Warning: Spoiler!


And the spindle orient/homing g-code:
Warning: Spoiler!


Have I somehow hijacked LCNC's ability to set index-enable for G33 commands?

Do I need an or2 component somewhere so that something in LCNC can set the index-enable pin high for synchronized spindle moves in addition to the orient sequence?

Or should I be looking elsewhere for the tapping-won't-start problem?
  • cmorley
  • cmorley
09 Nov 2024 04:06

QT Dragon - Funktionstaste mit "Override limits" belegen?

Category: Deutsch

Exzellent! Ich freue mich, dass es bei Ihnen funktioniert.

Chris
  • spumco
  • spumco
09 Nov 2024 03:18

probe basic - toolpath/file preview loading error

Category: QtPyVCP

Adding my two cents here...

I get a similar error message when trying to load a g-code file in PB.  No issues with the backplot but the attached error message pops up when I load the file.

I think I narrowed it down to the tool number being >199.

When I commented out the T407, T823, and T642 it loaded with no complaints.  And when I edited the file it would load fine at T199 (other two commented out) but puked when changed to T200.

I can load the tools in/out of my ATC using the PB interface, and call them up via MDI with no errors.

I can work around this for a short time by renumbering tools, but this is going to be annoying since I imported my F360 library to LCNC and I've got tools up to the 1100-range in the table.
  • MarkoPolo
  • MarkoPolo
09 Nov 2024 02:47
Replied by MarkoPolo on topic Rotary axis Display

Rotary axis Display

Category: Advanced Configuration

You can try to make a preview window with QtVismach. In Vismach the rotation axis displays well. I quickly made a window that is overlaid on qtdragon , as in the screenshot. You would have to work on displaying the gcode preview, but it would probably be useful.
  • ihavenofish
  • ihavenofish
09 Nov 2024 02:26
  • NTULINUX
  • NTULINUX's Avatar
09 Nov 2024 02:25 - 17 Nov 2024 02:39
Replied by NTULINUX on topic Linux is an RTOS NOW

Linux is an RTOS NOW

Category: Installing LinuxCNC

I'll be hosting a heavily optimized AMD64 Gentoo build for LinuxCNC and I'll be updating my interactive Gentoo installer too, it'll have the 6.12 PREEMPT_RT kernel, XFCE 4.20 pre-release and LXQt 2.1.

Installer works very well, removes all the hassle from building sources, works with LinuxCNC out of the box (just have to emerge it) and the installer works faster than Ubuntu and Debian installers. It's just out-of-date at the moment.

edit: Currently having serious issues with lxqt-panel (the fricken task bar) so it may just have XFCE instead.

edit2: Problems solved, LXQt will be available in this build too.
  • Philip Lydin
  • Philip Lydin
09 Nov 2024 02:10
Replied by Philip Lydin on topic Brother TC-225 / TC-229 adventure!

Brother TC-225 / TC-229 adventure!

Category: CNC Machines

its fixed now, it was some small potentiometer on the drive that was set to set wrong position and after that it runs super smooth
  • IronManDylan
  • IronManDylan
09 Nov 2024 01:26
Replied by IronManDylan on topic Fast Hole EDM from Hacked Parts

Fast Hole EDM from Hacked Parts

Category: General LinuxCNC Questions

Hi all, 


I apologize for the delay. I have been busy with this and another project. 

So the new rackrobo does have a way of modulating power output.  I was able to get my hands on a power supply at no cost to me. They are having some issues but it seems like the probability of an issue occurring is still pretty small.  If I do have issues I'll look at swapping the power supply. 

Yes I imagine sinker would draw a lot more power then wire and especially hole drilling. 


As far as linuxCNC control of EDM. Does anyone know if the ones like tommy was showing are using reverse feed rate and short detection?  It seems like it wouldn't be too difficult to pause the program when a short is detected, but does anyone know if it is possible to get reverse feed to pull out of the short and then reengage? I know this is how professional machines operate and I would think someone has figured out how to do this with LinuxCNC...  Any LinuxCNC wizards out there know how to do this?


Best,
-Dylan
  • Grotius
  • Grotius's Avatar
08 Nov 2024 23:33
Replied by Grotius on topic Controlling a compressor with Linuxcnc.

Controlling a compressor with Linuxcnc.

Category: Plasmac

Hi,

Years ago i had the same problem as you. Was cutting a Thermal Dynamics 200 Amps + compressor + cnc.
I managed to get a diesel power pack on a trailer.

So if you are like a professor you could manage to create a big iron flywheel in your workshop.
Driven direct drive by a electromotor.

Say the flywheel mass is about 2000kg, rotating at 500 rpm. This will solve power dips for the whole street.
It's a silent & cheap solution.







 
  • Grotius
  • Grotius's Avatar
08 Nov 2024 23:14
Replied by Grotius on topic Trajectory Planner using Ruckig Lib

Trajectory Planner using Ruckig Lib

Category: General LinuxCNC Questions

Hi,

So far i am happy with the insights tonight.

Source code:
rtapi_function_loader

Above is a repository testing the posix pthread, running different .so libary functions named "test();".
It's more or less how the original rtapi workflow is.

This is tested ok with a base thread nano second : 25.000
And you can set the used cpu's. You can set it by  passing a cpu_list = {0, 1};

If you load 4 instances of the rtapi_function_loader class and assign each
instance to a different CPU (CPU 1, CPU 2, etc.),
each instance will run on its own dedicated CPU core,
ensuring that all 4 threads run in parallel without sharing CPU time.

We have also a priority for the rtapi_function_loader's pthread in the value 0 up to 100.

Ok, now next thing is maybe to look when, where and why we need to allocate shared memory blocks.
  • ihavenofish
  • ihavenofish
08 Nov 2024 21:27
Replied by ihavenofish on topic Brother TC-225 / TC-229 adventure!

Brother TC-225 / TC-229 adventure!

Category: CNC Machines

wiring for the sanyo drives. i forget now if the toshiba are different.  you really do need it all connected including voltage references, start(enable), etc.
 
  • ihavenofish
  • ihavenofish
08 Nov 2024 21:24
Replied by ihavenofish on topic Brother TC-225 / TC-229 adventure!

Brother TC-225 / TC-229 adventure!

Category: CNC Machines

Does anyone happen to know how I can connect the spindle orientation?
I have the spindle turning, but not yet the orientation
 

I never got that far with mine. I dont think its covered in this thread, but i think some others did it elsewhere. I think most people switch the spindle to A axis, and then home. 
  • ihavenofish
  • ihavenofish
08 Nov 2024 21:23 - 08 Nov 2024 22:10
Replied by ihavenofish on topic Brother TC-225 / TC-229 adventure!

Brother TC-225 / TC-229 adventure!

Category: CNC Machines

These are ac servos. noise should not be of any issue as it a differential analogue signal.

I think its just connected wrong.
  • alexbrem89
  • alexbrem89
08 Nov 2024 21:13
Replied by alexbrem89 on topic Brother TC-225 / TC-229 adventure!

Brother TC-225 / TC-229 adventure!

Category: CNC Machines

Does anyone happen to know how I can connect the spindle orientation?
I have the spindle turning, but not yet the orientation
  • tommylight
  • tommylight's Avatar
08 Nov 2024 21:12
Replied by tommylight on topic Brother TC-225 / TC-229 adventure!

Brother TC-225 / TC-229 adventure!

Category: CNC Machines

i tried with a battery and and variable psu but it makes alot of noise and shuts off because of overheating after maybe a minute of running, i guess the drive is overheating since i dont got the tempreature sensor connected.

Noise and vibrations are from interference with unshielde/ungrounded wires, but since it is an old machine, check if motors have brushes and if they do, yank them out and use compressed air inside the brush orifice to remove the fine dust that gathers there and can cause heating during normal work.
Do keep track at what brush was in what orifice and how it was oriented, that is very important.
Displaying 18211 - 18225 out of 24297 results.
Time to create page: 0.633 seconds
Powered by Kunena Forum