Welcome! Log In Create A New Profile

Advanced

Repetier host V.95 E and F

Posted by lowres 
Repetier host V.95 E and F
January 17, 2014 09:43PM
Greetings,
I have upgrated to host V95 E and then .95F, along with firmware v.91 on Azteeg X3 running a mill. When I attempt to run g-code I had run successfully on earlier version, I get the following error, which loops:

19:13:47.602 : Resend: N13 Circular Interpolation Plane Selection XY - Cutter Compensation Cancel *62
19:13:47.603 : Resend: N14 G40 *8
19:13:47.604 : Resend: N15 Select Metric Units *19
19:13:47.605 : Resend: N16 G21 *13
19:13:47.613 : Error:Format error

19:13:49.664 : Resend: N17 G80 *7
19:13:49.665 : Resend: N18 Absolute Positioning Mode *10
19:13:49.666 : Resend: N19 G90 *8
19:13:49.667 : Resend: N20 I0 R0 P0 *23
19:13:49.668 : Resend: N21 G98 *11
19:13:49.669 : Resend: N22 T1 S16000 *111
19:13:49.670 : Resend: N23 M117 ETE 23s *19
19:13:49.671 : Resend: N24 M29 *14
19:13:49.672 : Resend: N25 M84 *8
19:13:49.679 : Error:expected line 13 got 17

Insite or send me in the right direction and I would be grateful.
Thanks
Re: Repetier host V.95 E and F
January 18, 2014 05:34AM
Please use valid gcode in the dialect of the firmware.
e.g. N13 Circular Interpolation Plane Selection XY - Cutter Compensation Cancel *62
is no valid command. I guess it should be a comment but comments start with semicolon ;
I guess it is this confusing the firmware. It is now a bit more strict in it's detection. Format error indicates the command was received correct but it could not be associated with a valid G/M gcode so it assumes an error.


Repetier-Software - the home of Repetier-Host (Windows, Linux and Mac OS X) and Repetier-Firmware.
Repetier-Server - the solution to control your printer from everywhere.
Visit us on Facebook and Twitter!
Re: Repetier host V.95 E and F
January 18, 2014 12:16PM
Thank you. I will review.
Re: Repetier host V.95 E and F
January 18, 2014 08:40PM
I was able to clean up some unused commands from the gcode after reviewing the "implemanted codes", and was able to run the code, but the I find that the firmware is all reversed from what I had origionally setup. Mins were at Max and endstops are all reversed. I was able to invert the direction mins and max, but not the endstops. I tryed endstop inverting to false with no luck. I tried unchecking "X,Y &Z homing in negative direction direction (towards min endstop)" in the online configuration with no luck. As a last resort, I can reverse the wiring, but it is a pain because the azteeg has mins on screw terminals and max on crimp connectors. I am stuck at this point-so close
// ################ Endstop configuration #####################

#define ENDSTOP_PULLUP_X_MIN true
#define ENDSTOP_X_MIN_INVERTING true
#define MIN_HARDWARE_ENDSTOP_X true
#define ENDSTOP_PULLUP_Y_MIN true
#define ENDSTOP_Y_MIN_INVERTING true
#define MIN_HARDWARE_ENDSTOP_Y true
#define ENDSTOP_PULLUP_Z_MIN true
#define ENDSTOP_Z_MIN_INVERTING true
#define MIN_HARDWARE_ENDSTOP_Z true
#define ENDSTOP_PULLUP_X_MAX true
#define ENDSTOP_X_MAX_INVERTING true
#define MAX_HARDWARE_ENDSTOP_X true
#define ENDSTOP_PULLUP_Y_MAX true
#define ENDSTOP_Y_MAX_INVERTING true
#define MAX_HARDWARE_ENDSTOP_Y true
#define ENDSTOP_PULLUP_Z_MAX true
#define ENDSTOP_Z_MAX_INVERTING true
#define MAX_HARDWARE_ENDSTOP_Z true
#define max_software_endstop_r true

#define min_software_endstop_x false
#define min_software_endstop_y false
#define min_software_endstop_z false
#define max_software_endstop_x false
#define max_software_endstop_y false
#define max_software_endstop_z false
#define ENDSTOP_X_BACK_MOVE 5
#define ENDSTOP_Y_BACK_MOVE 5
#define ENDSTOP_Z_BACK_MOVE 1
#define ENDSTOP_X_RETEST_REDUCTION_FACTOR 3
#define ENDSTOP_Y_RETEST_REDUCTION_FACTOR 3
#define ENDSTOP_Z_RETEST_REDUCTION_FACTOR 3
#define ENDSTOP_X_BACK_ON_HOME 1
#define ENDSTOP_Y_BACK_ON_HOME 1
#define ENDSTOP_Z_BACK_ON_HOME 1
#define ALWAYS_CHECK_ENDSTOPS 1

// ################# XYZ movements ###################

#define X_ENABLE_ON 0
#define Y_ENABLE_ON 0
#define Z_ENABLE_ON 0
#define DISABLE_X 0
#define DISABLE_Y 0
#define DISABLE_Z 0
#define DISABLE_E 0
#define INVERT_X_DIR 1
#define INVERT_Y_DIR 1
#define INVERT_Z_DIR 0
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Z_HOME_DIR -1
#define X_MAX_LENGTH 210
#define Y_MAX_LENGTH 170
#define Z_MAX_LENGTH 80
#define X_MIN_POS 0
#define Y_MIN_POS 0
#define Z_MIN_POS 0


X homing in negative direction direction (towards min endstop).
Y homing in negative direction direction (towards min endstop).
Z homing in negative direction direction (towards min endstop).
Sorry, only registered users may post in this forum.

Click here to login