Advanced Search

Search Results (Searched for: )

  • Ismacr63
  • Ismacr63
25 Feb 2025 11:22 - 25 Feb 2025 12:12
Replied by Ismacr63 on topic No Keyboard jog after update 2.9.3 to 2.9.4

No Keyboard jog after update 2.9.3 to 2.9.4

Category: QtPyVCP

thank you so much. Before I used Shift for fast movement. Now it doesn't work, can it be activated somehow? Is there a changelog where I can see basic probe changes?
  • RNJFAB
  • RNJFAB
25 Feb 2025 10:54

Homemade CNC Plasma - hypertherm, Mesa, gear drives, nema 34.

Category: Show Your Stuff

Its been a very busy few days. slowly getting tools dialed in for the new machine. Still a long way to go with ohmic sensing and the air scribe, but I'm happy with how everything is moving. the factory hypertherm cut charts are about 1000mm/min off what is actually working.

  • denhen89
  • denhen89's Avatar
25 Feb 2025 10:51

(LPT) Debian 12 Latency spikes/unexpected real time delay. Looking for solution.

Category: General LinuxCNC Questions

This is interesting... I will read about that later. If i can directly save files from Fusion360 to that USB drive that is plugged to the Router, then this option might be best.
I will test it, thank you!
  • JB-Motoring
  • JB-Motoring
25 Feb 2025 10:48
Replied by JB-Motoring on topic Mesa 7i97T + 7i84 + 7i78 configuration

Mesa 7i97T + 7i84 + 7i78 configuration

Category: General LinuxCNC Questions

Okay,

I managed to get the encoders and Analog outputs working :)!

The next thing would be to get the io's working correctly.

I attached the corrected hal and ini- also the thing that comes from "halcmd show pin > all_linuxcnc_pins".

It feels like, I am missing some ios.

Is that correct? What about the sserial init. at the beginning of the .hal?

Thanks guys :)
  • rainbowkoala49
  • rainbowkoala49
25 Feb 2025 10:29 - 25 Feb 2025 10:29
Replied by rainbowkoala49 on topic Elumatec SBZ 130/01 retrofit

Elumatec SBZ 130/01 retrofit

Category: CNC Machines

is it entirely impossible or just not worth the effort? because I dont think so replacing the motors and/or drives is within our budget :(
  • dm17ry
  • dm17ry's Avatar
25 Feb 2025 10:28 - 26 Feb 2025 06:55
Replied by dm17ry on topic Automatic naming of signals in HAL

Automatic naming of signals in HAL

Category: General LinuxCNC Questions

i was suggesting that you can easily do it in TCL youself, but apparently there's no command which would return a net name a pin connected to. only "show pin" which prints to stdout. and it's a bit complicated to capture it into a variable...
anyways, the following show work:

proc redirect_variable {varname cmd} {
    rename puts ::tcl::orig::puts
    global __puts_redirect
    set __puts_redirect {}
    proc puts args {
        global __puts_redirect
        set __puts_redirect [concat $__puts_redirect [lindex $args end]]
    }
    uplevel $cmd
    upvar $varname destination
    set destination $__puts_redirect
    unset __puts_redirect
    rename puts {}
    rename ::tcl::orig::puts puts
}
set netno 1
proc anet {args} {
    redirect_variable res {show pin {*}$args}
    if [regexp {[<=]=[=>]\s+(\w+)} $res match net] {
        net $net {*}$args
    } else {
        net net_$::netno {*}$args
        incr ::netno
    }
}

loadrt logic names=geartrain_slow_OR personality=0x203
addf geartrain_slow_OR servo-thread
anet geartrain.stage1.search_reverse => geartrain_reverse_OR.in-00
anet geartrain.stage2.search_reverse => geartrain_reverse_OR.in-01
net named_net geartrain.stage3.search_reverse
anet geartrain.stage3.search_reverse => geartrain_reverse_OR.in-02
anet geartrain.stage3.search_reverse => geartrain_reverse_OR.in-02
anet geartrain_slow_OR.or => hm2_7i95.0.7i84.0.0.output-10 

but debugging HAL files won't be easy...
Displaying 18676 - 18681 out of 18681 results.
Time to create page: 0.356 seconds
Powered by Kunena Forum