Hello Guest it is April 19, 2024, 10:20:16 PM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Mauri

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 »
51
Mach4 General Discussion / Re: FTP site access
« on: September 08, 2018, 12:01:27 AM »
Hi,
After more than two months of no Mach4 FTP now the FTP works?
Not sure what has changed, nothing on my side, ISP change?
Now happy.
Regards,
Mauri.

52
Zuxztah,
Mach4 V3481 and V3804 do not have any issues, they can process up to 2 Million lines of G-Code without issue.
Mach4 V3481 and V3804 also do not have any issues with Memory or CPU usage.
I can run Mach4 with many other programs at the same time with the CPU running at 100% all the time without any issues.
I have used it on runs that last  over 14hours straight on the CNC Mill with no issues.
Also have run jobs that ran each day for 14days straight with a max of about 14 hours a day.
Mach4 can run on an XP PC with 2GB ram and no Video card with over 1 million lines and not stop.
I use a PC with 8GB Ram and Win10.
So if it is not a licensing issue it must be something else.
Regards,
Mauri.

53
Mach4 General Discussion / Re: FTP site access
« on: September 05, 2018, 08:59:42 PM »
Hi,
with an nslookup
Name:    ftp://anonymous:guest@ftp.machsupport.com
Addresses:  2001:8002:e32:f002::f5ff
But same issue not accessible and I cannot ping it.
Regards,
Mauri.

54
hawkidw,
What controller are you using?
I have only used V3481 and V3804.
I cannot get access yet to the FTP Server ISP issues.
I have HiCON on my Mill and that's the one that just will not break no matter what I do with memory usage.
I have not performed a thorough memory test on the ESS yet, but will do in the next couple of days.
Regards,
Mauri.

55
Mach4 General Discussion / Re: FTP site access
« on: September 05, 2018, 04:03:15 PM »
Hi,
Anyone have the IP address of the FTP Server?
Regards,
Mauri.

56
Mach4 General Discussion / Re: FTP site access
« on: September 05, 2018, 03:40:19 PM »
Hi,
I did though testing with a number of operating systems though my main firewall and via wireless as well as IPV4 and IPV6 DNS's of many types.
It comes down to the ISP in my case Telstra same as Stuart.
Regards,
Mauri.

57
Mach4 General Discussion / Re: FTP site access
« on: September 04, 2018, 09:37:17 PM »
DazTheGas,
This is the Error that I get when trying to access the FTP site?
Regards,
Mauri.

58
Mach4 General Discussion / FTP site access
« on: September 04, 2018, 04:45:48 PM »
Hi,
I have not been able to access the Mach4 FTP website for some time with Microsoft Edge or Microsoft Explorer?
Has anyone been able to access it?

Regards,
Mauri.

59
hawkidw,
There are no memory issues with V3804 like its predasessor V3481.
PC has 8 Gig Ram and 1 Meg Video on one and 8Gig and No Video card on the other.
Have run G-Code 2.5million lines.
I have run Mach4 with have a dozen programs at the same time with memory showing 100% all through the run and have had no issue in completing the G-Code run.
There must be some other issue.
I have turned off all plugins apart from Hicon on one M/C and Pendant and ESS on another.
mcLua/mcRegfile/unPlugin I have left in. You can leave in Sim plugin if you need it.
Regards,
Mauri.

60
Mach4 General Discussion / Re: Home and limit switches
« on: August 06, 2018, 06:50:35 PM »
lumber60,
As I mentioned in another Post, you could do it in Screen Load Script.
The first one is not Ref all Home part of Mach4 screen set  and the Second one is you add another button below the first and resize the first so it fits and call the function like the Ref all Home but with the following.
Then you can make the offsets like you need for your machine needs, this is an alternate method if you find that you have issues with Mach4 and your Controller when Homing.
Regards,
Mauri.


In New Button
RefAllHomeWithOffset()
-- Homing Offset
offset_applied ="false";

In Screen Load Script.
---------------------------------------------------------------
-- Ref All Home() function.
---------------------------------------------------------------
function RefAllHome()
   mc.mcAxisDerefAll(inst);  --Just to turn off all ref leds
   mc.mcAxisHomeAll(inst);
   coroutine.yield() --yield coroutine so we can do the following after motion stops
   ----See ref all home button and plc script for coroutine.create and coroutine.resume
   wx.wxMessageBox('Referencing is complete')

end
---------------------------------------------------------------
-- Ref All Home With Offset() function.
---------------------------------------------------------------
function RefAllHomeWithOffset()
    mc.mcAxisDerefAll(inst)  --Just to turn off all ref leds
    mc.mcAxisHomeAll(inst)
    coroutine.yield() --yield coroutine so we can do the following after motion stops
    ----See ref all home button and plc script for coroutine.create and coroutine.resume
    mc.mcCntlGcodeExecute(inst, "G1 X0.1 Y0.1 F30")
   --mc.mcCntlGcodeExecute(inst, "G1 X0.1 Y0.1 Z0.1 F30")
   coroutine.yield()
    wx.wxMessageBox('Referencing and Offset Completed')
end

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 »