Advanced Search

Search Results (Searched for: )

  • Aciera
  • Aciera's Avatar
15 Jan 2025 08:27
Replied by Aciera on topic LCNC 2.10 - Ask for AUTOMATIC_G43

LCNC 2.10 - Ask for AUTOMATIC_G43

Category: Gmoccapy

code snippets:

gmoccapy.py:
        if self.prefs.getpref("show_startup_messsage", True, bool):
            title = "Important change for version 2.10"
            message = "Gmoccapy does no longer automatically retain G43 after a toolchange!"
            sub_message = "Automatic reactivation of G43 is possible using a REMAP.\nAn example can be found in any Gmoccapy SIM configuration."
            cb_value = self.dialogs.show_startup_message(self, _(message), _(sub_message), _(title))
            if cb_value:
                self.prefs.putpref("show_startup_messsage", False, bool)

dialogs.py:
    def show_startup_message(self, caller, message, sub_message, title = _("Operator Message")):
        dialog = Gtk.MessageDialog(caller.widgets.window1,
                                   Gtk.DialogFlags.DESTROY_WITH_PARENT,
                                   Gtk.MessageType.WARNING,
                                   Gtk.ButtonsType.NONE)
        dialog.set_title(str(title))
        dialog.set_markup("<span size='12000'><b>" + message + "</b></span>")
        dialog.format_secondary_text(sub_message)
        ok_button = Gtk.Button.new_with_mnemonic(_("_Ok"))
        ok_button.set_size_request(-1, 56)
        ok_button.connect("clicked",lambda w:dialog.response(Gtk.ResponseType.OK))
        box = Gtk.HButtonBox()
        box.add(ok_button)
        cb = Gtk.CheckButton(label = "Don't show this again")
        box.pack_start(cb, True, True, 0)
        dialog.action_area.add(box)
        dialog.set_border_width(5)
        dialog.show_all()
        self.emit("play_sound", "alert")
        response = dialog.run()
        dialog.destroy()
        return cb.get_active()
  • Aciera
  • Aciera's Avatar
15 Jan 2025 08:17 - 15 Jan 2025 08:22
Replied by Aciera on topic LCNC 2.10 - Ask for AUTOMATIC_G43

LCNC 2.10 - Ask for AUTOMATIC_G43

Category: Gmoccapy

Turned out to be not too difficult, adds an entry 'show_startup_message' in the .pref file:  
 
  • besriworld
  • besriworld
15 Jan 2025 08:01
Replied by besriworld on topic Gmoccapy 3.5.0 - opinions needed

Gmoccapy 3.5.0 - opinions needed

Category: Gmoccapy

Yes, this is a useful feature, thanks!
  • marcom528
  • marcom528
15 Jan 2025 07:50

7i95t firmware brick because i flashed a 7i95 bitfile in the fallback

Category: Driver Boards

thanks for the fast response PCW!

for my understanding!?
1)flashing the firmware to the fpga using the infinty software and the ftdi4232 jtag interface.
am i flashing to the fpga ram (Volatile Memory)? after power loss, the firmware is gone right?

2)write the firmware to the fallback and the eeprom (is it a part of the fpga? or is it an external eeprom on the 7i95t?)

mesaflash --device 7I95T --fallback --write FPGAFILE.BIN
mesaflash --device 7I95T --write FPGAFILE.BIN

after writing the .bin file it should be permanently saved to the storage and the 7i95t should work porperly again after power loss?

the ftdi4232 mini should be deliverd on friday, i'll give it some trail and error then :)
  • liutas4x4
  • liutas4x4
15 Jan 2025 07:40

Connecting to FANUC αi-B βi-B (62XX) series servos to LinuxCNC system?

Category: Driver Boards

Two moments:
1. My target is B series Fanuc.
2. How to control with new protocol? Mesa? Connected to original Fanuc adater?

/eugenius
Displaying 20131 - 20135 out of 20135 results.
Time to create page: 0.546 seconds
Powered by Kunena Forum