Bugs item #2924173, was opened at 2009-12-31 13:55 Message generated for change (Tracker Item Submitted) made by nobody You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106744&aid=2924173&group_id=6744
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Stepconf Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Jeff Epler (jepler) Summary: wrong speed limit in "test axis" dialog Initial Comment: If step puls lenght > 5000, the limit for the axis velocity is not correct in the axis test dialog. I found an easy fix like this: 1989c1989,1992 < maxvel = 1e9 / minperiod / abs(scale) --- > if data.doublestep(): > maxvel = 1e9 / minperiod / abs(scale) > else: > maxvel = 0.5e9 / minperiod / abs(scale) Not sure of course if this the best solution. There are other unexpected things happening, I will log another artifact. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=106744&aid=2924173&group_id=6744 ------------------------------------------------------------------------------ This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to market process makes app distribution fast and easy Join now and get one step closer to millions of Verizon customers http://p.sf.net/sfu/verizon-dev2dev _______________________________________________ Emc-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/emc-developers
