Horizontal Radius missing in EEPROM

Having a problem? Post it here and someone will be along shortly to help
Post Reply
Cobaltrod
Prints-a-lot
Posts: 32
Joined: Thu Apr 17, 2014 5:28 am

Horizontal Radius missing in EEPROM

Post by Cobaltrod »

I have a Rostock Max V1. I replaced the Rambo with an Azteeg X3pro, and the LCD display with the Viki2 display. I use Repetier version .92.
I'm trying to calibrate the printer but I can't because "Horizontal Radius" is not present in EEPROM. Making changes to "Printer_Radius" in firmware appears to have no effect in calibration despite turning turning EEPROM support on and off and going through the calibration again and again.

I have a "horizontal Rod Radius at 0.0" in EEPROM but changes to this don't persist through firmware updates. Can someone please help me figure out a way to calibrate without being able to change " Horizontal radius"

Thanks, Rodney
User avatar
Jimustanguitar
ULTIMATE 3D JEDI
Posts: 2608
Joined: Sun Mar 31, 2013 1:35 am
Location: Notre Dame area
Contact:

Re: Horizontal Radius missing in EEPROM

Post by Jimustanguitar »

I don't believe that the Smoothie and clones use EEPROM for this type of setting. I think you'd have to make this sort of change in the confix.txt file on the SD card.
User avatar
Nylocke
ULTIMATE 3D JEDI
Posts: 1418
Joined: Sun Jun 23, 2013 1:43 pm
Location: Iowa

Re: Horizontal Radius missing in EEPROM

Post by Nylocke »

Have you tried changing the value in EEPROM and now worrying about reflashing? Generally people flash the firmware once and just change the value in EEPROM thereafter. Also the point of EEPROM is to prevent a reflash from reseting calibrated values. If you want to reset them then upload the EEPROM_Clear program in the IDE (file->examples->EEPROM->eeprom_clear or something like that)
User avatar
Nylocke
ULTIMATE 3D JEDI
Posts: 1418
Joined: Sun Jun 23, 2013 1:43 pm
Location: Iowa

Re: Horizontal Radius missing in EEPROM

Post by Nylocke »

Jim this is the X3 Pro, not the X5 mini. The X3 series still uses the ATMEGA 2560, same thing as the RAMBo and RAMPS.
Cobaltrod
Prints-a-lot
Posts: 32
Joined: Thu Apr 17, 2014 5:28 am

Re: Horizontal Radius missing in EEPROM

Post by Cobaltrod »

I have never seen "horizontal radius" in EEPROM or anywhere else, and have never been able to calibrate my 3D printer, even with the original Rambo installed. Another thing I have never been able to do is Print with EEPROM mode set to 1, z-height is all screwey,head crashes happen, homing issues occur,

For Once I'd just like to be able calibrate and print like everything should as documented, by have literally tried to fix things to calibrate and successfully print.
Cobaltrod
Prints-a-lot
Posts: 32
Joined: Thu Apr 17, 2014 5:28 am

Re: Horizontal Radius missing in EEPROM

Post by Cobaltrod »

For Years!
User avatar
Nylocke
ULTIMATE 3D JEDI
Posts: 1418
Joined: Sun Jun 23, 2013 1:43 pm
Location: Iowa

Re: Horizontal Radius missing in EEPROM

Post by Nylocke »

Where are you getting your firmware from? Can you post the config.h file thats apart of it?
Cobaltrod
Prints-a-lot
Posts: 32
Joined: Thu Apr 17, 2014 5:28 am

Re: Horizontal Radius missing in EEPROM

Post by Cobaltrod »

I can post the config.h. I'm not sure where this version of of FW came from. I think it was originally from a link in the Rostock max v1 assembly guide, then maybe imported in the Repetier FW config tool, updated to my config with Azteeg x3 pro and viki2 But over the years I have tried many Repetier FW versions, and like I said, I've never been able to never find or set horizontal radius or been able to calibrate my printer. Id love to find a solution. I'll add my config.h and EEPROM config. Thanks for the help.~ Rodney
Cobaltrod
Prints-a-lot
Posts: 32
Joined: Thu Apr 17, 2014 5:28 am

Re: Horizontal Radius missing in EEPROM

Post by Cobaltrod »

Okay, Here's my config.h
/*
COPY 2
4/25/16
Copy with working Homing
*/

#ifndef CONFIGURATION_H
#define CONFIGURATION_H
#define EEPROM_MODE 0
#define NUM_EXTRUDER 1 //RK
#define MOTHERBOARD 35 //RK
#include "pins.h"

#define DRIVE_SYSTEM 3

// ##########################################################################################
// ## Calibration ##
// ##########################################################################################

/** Drive settings for the Delta printers
*/
#if DRIVE_SYSTEM==3
// ***************************************************
// *** These parameter are only for Delta printers ***
// ***************************************************

/** \brief Delta drive type: 0 - belts and pulleys, 1 - filament drive */
#define DELTA_DRIVE_TYPE 0

#if DELTA_DRIVE_TYPE == 0
/** \brief Pitch in mm of drive belt. GT2 = 2mm */
#define BELT_PITCH 2
/** \brief Number of teeth on X, Y and Z tower pulleys */
#define PULLEY_TEETH 15
#define PULLEY_CIRCUMFERENCE (BELT_PITCH * PULLEY_TEETH)
#elif DELTA_DRIVE_TYPE == 1
/** \brief Filament pulley diameter in milimeters */
#define PULLEY_DIAMETER 10
#define PULLEY_CIRCUMFERENCE (PULLEY_DIAMETER * 3.1415927)
#endif

/** \brief Steps per rotation of stepper motor */
#define STEPS_PER_ROTATION 200

/** \brief Micro stepping rate of X, Y and Y tower stepper drivers */
#define MICRO_STEPS 16

// Calculations
#define AXIS_STEPS_PER_MM ((float)(MICRO_STEPS * STEPS_PER_ROTATION) / PULLEY_CIRCUMFERENCE)
#define XAXIS_STEPS_PER_MM AXIS_STEPS_PER_MM
#define YAXIS_STEPS_PER_MM AXIS_STEPS_PER_MM
#define ZAXIS_STEPS_PER_MM AXIS_STEPS_PER_MM
#else
// *******************************************************
// *** These parameter are for all other printer types ***
// *******************************************************

/** Drive settings for printers with cartesian drive systems */
/** \brief Number of steps for a 1mm move in x direction.
For xy gantry use 2*belt moved!
Overridden if EEPROM activated. */
#define XAXIS_STEPS_PER_MM 98.425196
/** \brief Number of steps for a 1mm move in y direction.
For xy gantry use 2*belt moved!
Overridden if EEPROM activated.*/
#define YAXIS_STEPS_PER_MM 98.425196
/** \brief Number of steps for a 1mm move in z direction Overridden if EEPROM activated.*/
#define ZAXIS_STEPS_PER_MM 2560
#endif //RKEND

//#define XAXIS_STEPS_PER_MM 106.45 //RK
//#define YAXIS_STEPS_PER_MM 106.45 //RK
//#define ZAXIS_STEPS_PER_MM 106.45 //RK

//**************************************************************

#undef FAN_BOARD_PIN
#define FAN_BOARD_PIN -1
#define FAN_THERMO_PIN -1
#define FAN_THERMO_MIN_PWM 128
#define FAN_THERMO_MAX_PWM 255
#define FAN_THERMO_MIN_TEMP 45
#define FAN_THERMO_MAX_TEMP 60
#define FAN_THERMO_THERMISTOR_PIN -1
#define FAN_THERMO_THERMISTOR_TYPE 1
//**************************************************************
//#define EXTERNALSERIAL use Arduino serial library instead of build in. Requires more ram, has only 63 byte input buffer.
// Uncomment the following line if you are using arduino compatible firmware made for Arduino version earlier then 1.0
// If it is incompatible you will get compiler errors about write functions not beeing compatible!
//#define COMPAT_PRE1
//**************************************************************
#define BLUETOOTH_SERIAL -1
#define BLUETOOTH_BAUD 115200
#define MIXING_EXTRUDER 1
#define EXTRUDER_FAN_COOL_TEMP 50
#define PDM_FOR_EXTRUDER 0 //RK 1
#define PDM_FOR_COOLER 0 //RK 1
#define DECOUPLING_TEST_MAX_HOLD_VARIANCE 20
#define DECOUPLING_TEST_MIN_TEMP_RISE 1
#define KILL_IF_SENSOR_DEFECT 0
#define RETRACT_ON_PAUSE 5
#define PAUSE_START_COMMANDS ""
#define PAUSE_END_COMMANDS ""
//**************************************************************
#define EXT0_X_OFFSET 0
#define EXT0_Y_OFFSET 0
#define EXT0_Z_OFFSET 0
#define EXT0_STEPS_PER_MM 92.650 //RK
#define EXT0_TEMPSENSOR_TYPE 8 //RK
#define EXT0_TEMPSENSOR_PIN 13 //RK
#define EXT0_HEATER_PIN 10 //RK
#define EXT0_STEP_PIN ORIG_E0_STEP_PIN
#define EXT0_DIR_PIN ORIG_E0_DIR_PIN
#define EXT0_INVERSE 0
#define EXT0_ENABLE_PIN ORIG_E0_ENABLE_PIN
#define EXT0_ENABLE_ON 0
#define EXT0_MAX_FEEDRATE 50
#define EXT0_MAX_START_FEEDRATE 20
#define EXT0_MAX_ACCELERATION 5000
#define EXT0_HEAT_MANAGER 1
#define EXT0_WATCHPERIOD 1
#define EXT0_PID_INTEGRAL_DRIVE_MAX 230
#define EXT0_PID_INTEGRAL_DRIVE_MIN 40
#define EXT0_PID_PGAIN_OR_DEAD_TIME 38.01
#define EXT0_PID_I 6.42
#define EXT0_PID_D 56.89
#define EXT0_PID_MAX 255
#define EXT0_ADVANCE_K 0
#define EXT0_ADVANCE_L 0
#define EXT0_ADVANCE_BACKLASH_STEPS 0
#define EXT0_WAIT_RETRACT_TEMP 150
#define EXT0_WAIT_RETRACT_UNITS 0
#define EXT0_SELECT_COMMANDS ""
#define EXT0_DESELECT_COMMANDS ""
#define EXT0_EXTRUDER_COOLER_PIN 0
#define EXT0_EXTRUDER_COOLER_SPEED 0 //RK
#define EXT0_DECOUPLE_TEST_PERIOD 0
#define EXT0_JAM_PIN -1
#define EXT0_JAM_PULLUP 0
//**************************************************************
#define EXT1_X_OFFSET 0
#define EXT1_Y_OFFSET 0
#define EXT1_Z_OFFSET 0
#define EXT1_STEPS_PER_MM 92.650 //RK
#define EXT1_TEMPSENSOR_TYPE 8 //RK
#define EXT1_TEMPSENSOR_PIN 15 //RK
#define EXT1_HEATER_PIN 9
#define EXT1_STEP_PIN ORIG_E1_STEP_PIN
#define EXT1_DIR_PIN ORIG_E1_DIR_PIN
#define EXT1_INVERSE 0
#define EXT1_ENABLE_PIN ORIG_E1_ENABLE_PIN
#define EXT1_ENABLE_ON 0
#define EXT1_MAX_FEEDRATE 50
#define EXT1_MAX_START_FEEDRATE 0
#define EXT1_MAX_ACCELERATION 5000
#define EXT1_HEAT_MANAGER 1
#define EXT1_WATCHPERIOD 1
#define EXT1_PID_INTEGRAL_DRIVE_MAX 230
#define EXT1_PID_INTEGRAL_DRIVE_MIN 40
#define EXT1_PID_PGAIN_OR_DEAD_TIME 51.08
#define EXT1_PID_I 4.77
#define EXT1_PID_D 138.43
#define EXT1_PID_MAX 255
#define EXT1_ADVANCE_K 0
#define EXT1_ADVANCE_L 0
#define EXT1_ADVANCE_BACKLASH_STEPS 0
#define EXT1_WAIT_RETRACT_TEMP 150
#define EXT1_WAIT_RETRACT_UNITS 0
#define EXT1_SELECT_COMMANDS ""
#define EXT1_DESELECT_COMMANDS ""
#define EXT1_EXTRUDER_COOLER_PIN -1
#define EXT1_EXTRUDER_COOLER_SPEED 255
#define EXT1_DECOUPLE_TEST_PERIOD 12000
#define EXT1_JAM_PIN -1
#define EXT1_JAM_PULLUP 0

//**************************************************************

#define FEATURE_RETRACTION 1
#define AUTORETRACT_ENABLED 0
#define RETRACTION_LENGTH 5
#define RETRACTION_LONG_LENGTH 5
#define RETRACTION_SPEED 50
#define RETRACTION_Z_LIFT .3
#define RETRACTION_UNDO_EXTRA_LENGTH 0
#define RETRACTION_UNDO_EXTRA_LONG_LENGTH 1
#define RETRACTION_UNDO_SPEED 20
#define FILAMENTCHANGE_X_POS 0
#define FILAMENTCHANGE_Y_POS 0
#define FILAMENTCHANGE_Z_ADD 2
#define FILAMENTCHANGE_REHOME 1
#define FILAMENTCHANGE_SHORTRETRACT 5
#define FILAMENTCHANGE_LONGRETRACT 50
#define JAM_STEPS 220
#define JAM_SLOWDOWN_STEPS 320
#define JAM_SLOWDOWN_TO 70
#define JAM_ERROR_STEPS 500
#define JAM_MIN_STEPS 10
#define JAM_ACTION 1
#define RETRACT_DURING_HEATUP true
#define PID_CONTROL_RANGE 20
#define SKIP_M109_IF_WITHIN 2
#define SCALE_PID_TO_MAX 0
#define TEMP_HYSTERESIS 0
#define EXTRUDE_MAXLENGTH 160
#define NUM_TEMPS_USERTHERMISTOR0 0
#define USER_THERMISTORTABLE0 {}
#define NUM_TEMPS_USERTHERMISTOR1 0
#define USER_THERMISTORTABLE1 {}
#define NUM_TEMPS_USERTHERMISTOR2 0
#define USER_THERMISTORTABLE2 {}
//#define NUM_TEMPS_USERTHERMISTOR3 0 //Not in Diamond
//#define USER_THERMISTORTABLE3 {}//Not in Diamond
#define GENERIC_THERM_VREF 5
#define GENERIC_THERM_NUM_ENTRIES 33
#define HEATER_PWM_SPEED 2

//**************************************************************
// ############# Heated bed configuration ########################
// Config for thermistor
#define HAVE_HEATED_BED 1
#define HEATED_BED_MAX_TEMP 120
#define SKIP_M190_IF_WITHIN 3
#define HEATED_BED_SENSOR_TYPE 8
#define HEATED_BED_SENSOR_PIN 14 //RK
#define HEATED_BED_HEATER_PIN 8 //RK
#define HEATED_BED_SET_INTERVAL 5000
#define HEATED_BED_HEAT_MANAGER -1
#define HEATED_BED_PID_INTEGRAL_DRIVE_MAX 255
#define HEATED_BED_PID_INTEGRAL_DRIVE_MIN 80
#define HEATED_BED_PID_PGAIN_OR_DEAD_TIME 99.55
#define HEATED_BED_PID_IGAIN 7.95
#define HEATED_BED_PID_DGAIN 311.72
#define HEATED_BED_PID_MAX 255
#define HEATED_BED_DECOUPLE_TEST_PERIOD 300000
#define MIN_EXTRUDER_TEMP 150
#define MAXTEMP 275
#define MIN_DEFECT_TEMPERATURE -10
#define MAX_DEFECT_TEMPERATURE 290

//**************************************************************
// ##########################################################################################
// ## Laser configuration ##
// ##########################################################################################

#define SUPPORT_LASER 0
#define LASER_PIN -1
#define LASER_ON_HIGH 1
//**************************************************************
// ## CNC configuration ##

#define SUPPORT_CNC 0
#define CNC_WAIT_ON_ENABLE 300
#define CNC_WAIT_ON_DISABLE 0
#define CNC_ENABLE_PIN -1
#define CNC_ENABLE_WITH 1
#define CNC_DIRECTION_PIN -1
#define CNC_DIRECTION_CW 1
//**************************************************************

#define DEFAULT_PRINTER_MODE 0

//**************************************************************
// ################ Endstop configuration #####################
//
#define ENDSTOP_PULLUP_X_MIN false
#define ENDSTOP_X_MIN_INVERTING false
#define MIN_HARDWARE_ENDSTOP_X false

#define ENDSTOP_PULLUP_Y_MIN false
#define ENDSTOP_Y_MIN_INVERTING false
#define MIN_HARDWARE_ENDSTOP_Y false

#define ENDSTOP_PULLUP_Z_MIN false
#define ENDSTOP_Z_MIN_INVERTING false
#define MIN_HARDWARE_ENDSTOP_Z false

#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 true
#define min_software_endstop_y true
#define min_software_endstop_z true
#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 2
#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 0
#define ENDSTOP_Y_BACK_ON_HOME 0
#define ENDSTOP_Z_BACK_ON_HOME 0
#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 0
#define INVERT_Y_DIR 0
#define INVERT_Z_DIR 0
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Z_HOME_DIR -1
#define X_MAX_LENGTH 328.75 //RK
#define Y_MAX_LENGTH 328.75 //RK
#define Z_MAX_LENGTH 328.75 //RK
#define X_MIN_POS 0
#define Y_MIN_POS 0
#define Z_MIN_POS 0
#define DISTORTION_CORRECTION 0
#define DISTORTION_CORRECTION_POINTS 5
#define DISTORTION_CORRECTION_R 100
#define DISTORTION_PERMANENT 1
#define DISTORTION_UPDATE_FREQUENCY 15
#define DISTORTION_START_DEGRADE 0.5
#define DISTORTION_END_HEIGHT 1
#define DISTORTION_EXTRAPOLATE_CORNERS 0
#define DISTORTION_XMIN 10
#define DISTORTION_YMIN 10
#define DISTORTION_XMAX 190
#define DISTORTION_YMAX 190

// ##########################################################################################
// ## Movement settings ##
// ##########################################################################################

#define FEATURE_BABYSTEPPING 1
#define BABYSTEP_MULTIPLICATOR 1

#define DELTA_SEGMENTS_PER_SECOND_PRINT 180 // Move accurate setting for print moves
#define DELTA_SEGMENTS_PER_SECOND_MOVE 70 // Less accurate setting for other moves
#define EXACT_DELTA_MOVES 1

// Delta settings
#define DELTA_HOME_ON_POWER 0 //Diamond
#define DELTA_DIAGONAL_ROD 269 //RK
#define DELTA_ALPHA_A 210
#define DELTA_ALPHA_B 330
#define DELTA_ALPHA_C 90
#define DELTA_RADIUS_CORRECTION_A 0
#define DELTA_RADIUS_CORRECTION_B 0
#define DELTA_RADIUS_CORRECTION_C 0
#define DELTA_DIAGONAL_CORRECTION_A 0
#define DELTA_DIAGONAL_CORRECTION_B 0
#define DELTA_DIAGONAL_CORRECTION_C 0
#define END_EFFECTOR_HORIZONTAL_OFFSET 0
#define CARRIAGE_HORIZONTAL_OFFSET 0
#define DELTA_MAX_RADIUS 130
//**************************************************************
#define ROD_RADIUS 135 //RK
#define PRINTER_RADIUS 194.25 //RK
#define DELTA_HOME_ON_POWER 0
#define STEP_COUNTER
#define DELTA_X_ENDSTOP_OFFSET_STEPS 0
#define DELTA_Y_ENDSTOP_OFFSET_STEPS 0
#define DELTA_Z_ENDSTOP_OFFSET_STEPS 0
#define DELTA_FLOOR_SAFETY_MARGIN_MM 15
//**************************************************************
//#define SOFTWARE_LEVELING

//**************************************************************
#define DELTASEGMENTS_PER_PRINTLINE 24
#define STEPPER_INACTIVE_TIME 360L
#define MAX_INACTIVE_TIME 600L
#define MAX_FEEDRATE_X 350
#define MAX_FEEDRATE_Y 350
#define MAX_FEEDRATE_Z 350
#define HOMING_FEEDRATE_X 20 //RK
#define HOMING_FEEDRATE_Y 20 //RK
#define HOMING_FEEDRATE_Z 20 //RK
#define HOMING_ORDER HOME_ORDER_ZXY //RK
#define ZHOME_MIN_TEMPERATURE 0
#define ZHOME_HEAT_ALL 1
#define ZHOME_HEAT_HEIGHT 20
#define ZHOME_X_POS 999999
#define ZHOME_Y_POS 999999
#define ENABLE_BACKLASH_COMPENSATION 0
#define X_BACKLASH 0
#define Y_BACKLASH 0
#define Z_BACKLASH 0
#define RAMP_ACCELERATION 1
#define STEPPER_HIGH_DELAY 0
#define DIRECTION_DELAY 0
#define STEP_DOUBLER_FREQUENCY 12000
#define ALLOW_QUADSTEPPING 1
#define DOUBLE_STEP_DELAY 0 // time in microseconds
#define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_X 1000
#define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Y 1000
#define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Z 1000
#define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_X 1000
#define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Y 1000
#define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Z 10
#define INTERPOLATE_ACCELERATION_WITH_Z 0
#define ACCELERATION_FACTOR_TOP 100
#define MAX_JERK 20
#define MAX_ZJERK 0.3
#define PRINTLINE_CACHE_SIZE 16
#define MOVE_CACHE_LOW 10
#define LOW_TICKS_PER_MOVE 250000
#define FEATURE_TWO_XSTEPPER 0
#define X2_STEP_PIN ORIG_E1_STEP_PIN
#define X2_DIR_PIN ORIG_E1_DIR_PIN
#define X2_ENABLE_PIN ORIG_E1_ENABLE_PIN
#define FEATURE_TWO_YSTEPPER 0
#define Y2_STEP_PIN ORIG_E1_STEP_PIN
#define Y2_DIR_PIN ORIG_E1_DIR_PIN
#define Y2_ENABLE_PIN ORIG_E1_ENABLE_PIN
#define FEATURE_TWO_ZSTEPPER 0
#define Z2_STEP_PIN ORIG_E1_STEP_PIN
#define Z2_DIR_PIN ORIG_E1_DIR_PIN
#define Z2_ENABLE_PIN ORIG_E1_ENABLE_PIN
#define FEATURE_THREE_ZSTEPPER 0
#define Z3_STEP_PIN ORIG_E2_STEP_PIN
#define Z3_DIR_PIN ORIG_E2_DIR_PIN
#define Z3_ENABLE_PIN ORIG_E2_ENABLE_PIN
#define FEATURE_DITTO_PRINTING 0
#define USE_ADVANCE 0
#define ENABLE_QUADRATIC_ADVANCE 0
//**************************************************************
// ################# Misc. settings ##################

#define BAUDRATE 115200
#define ENABLE_POWER_ON_STARTUP 1
#define POWER_INVERTING 0
#define KILL_METHOD 1
#define ACK_WITH_LINENUMBER 0
#define WAITING_IDENTIFIER "wait" //RK
#define ECHO_ON_EXECUTE 1
#undef PS_ON_PIN
#define PS_ON_PIN ORIG_PS_ON_PIN
#define JSON_OUTPUT 0
//**************************************************************
/* ======== Servos =======
Control the servos with
M340 P<servoId> S<pulseInUS> / ServoID = 0..3 pulseInUs = 500..2500
Servos are controlled by a pulse width normally between 500 and 2500 with 1500ms in center position. 0 turns servo off.
WARNING: Servos can draw a considerable amount of current. Make sure your system can handle this or you may risk your hardware!
*/
#define FEATURE_SERVO 0
#define SERVO0_PIN 11
#define SERVO1_PIN -1
#define SERVO2_PIN -1
#define SERVO3_PIN -1
#define SERVO0_NEUTRAL_POS -1
#define SERVO1_NEUTRAL_POS -1
#define SERVO2_NEUTRAL_POS -1
#define SERVO3_NEUTRAL_POS -1
#define UI_SERVO_CONTROL 0
#define FAN_KICKSTART_TIME 200
#define FEATURE_WATCHDOG 1


//**************************************************************
// #################### Z-Probing #####################

#define Z_PROBE_Z_OFFSET 0
#define Z_PROBE_Z_OFFSET_MODE 0
#define UI_BED_COATING 0
#define FEATURE_Z_PROBE 0
#define Z_PROBE_BED_DISTANCE 10
#define Z_PROBE_PIN -1
#define Z_PROBE_PULLUP 0
#define Z_PROBE_ON_HIGH 0
#define Z_PROBE_X_OFFSET 0
#define Z_PROBE_Y_OFFSET 0
#define Z_PROBE_WAIT_BEFORE_TEST 0
#define Z_PROBE_SPEED 2
#define Z_PROBE_XY_SPEED 150
#define Z_PROBE_SWITCHING_DISTANCE 1
#define Z_PROBE_REPETITIONS 1
#define Z_PROBE_HEIGHT 40
#define Z_PROBE_START_SCRIPT ""
#define Z_PROBE_FINISHED_SCRIPT ""
#define Z_PROBE_REQUIRES_HEATING 0
#define Z_PROBE_MIN_TEMPERATURE 150
#define FEATURE_AUTOLEVEL 1
#define Z_PROBE_X1 20
#define Z_PROBE_Y1 20
#define Z_PROBE_X2 160
#define Z_PROBE_Y2 20
#define Z_PROBE_X3 100
#define Z_PROBE_Y3 160
#define BED_LEVELING_METHOD 0
#define BED_CORRECTION_METHOD 0
#define BED_LEVELING_GRID_SIZE 5
#define BED_LEVELING_REPETITIONS 5
#define BED_MOTOR_1_X 0
#define BED_MOTOR_1_Y 0
#define BED_MOTOR_2_X 200
#define BED_MOTOR_2_Y 0
#define BED_MOTOR_3_X 100
#define BED_MOTOR_3_Y 200
#define BENDING_CORRECTION_A 0
#define BENDING_CORRECTION_B 0
#define BENDING_CORRECTION_C 0
#define FEATURE_AXISCOMP 0
#define AXISCOMP_TANXY 0
#define AXISCOMP_TANYZ 0
#define AXISCOMP_TANXZ 0
//**************************************************************
#ifndef SDSUPPORT // Some boards have sd support on board. These define the values already in pins.h
#define SDSUPPORT 0
#undef SDCARDDETECT
#define SDCARDDETECT ORIG_SDCARDDETECT
#define SDCARDDETECTINVERTED 0
#endif
#define SD_EXTENDED_DIR 1 /** Show extended directory including file length. Don't use this with Pronterface! */
#define SD_RUN_ON_STOP ""
#define SD_STOP_HEATER_AND_MOTORS_ON_STOP 1
#define ARC_SUPPORT 1
#define FEATURE_MEMORY_POSITION 1
#define FEATURE_CHECKSUM_FORCED 0
#define FEATURE_FAN_CONTROL 1
#define FEATURE_FAN2_CONTROL 1
#define FEATURE_CONTROLLER 21
#define LANGUAGE_EN_ACTIVE 1
#define LANGUAGE_DE_ACTIVE 0
#define LANGUAGE_NL_ACTIVE 0
#define LANGUAGE_PT_ACTIVE 0
#define LANGUAGE_IT_ACTIVE 1
#define LANGUAGE_ES_ACTIVE 0
#define LANGUAGE_FI_ACTIVE 1
#define LANGUAGE_SE_ACTIVE 0
#define LANGUAGE_FR_ACTIVE 0
#define LANGUAGE_CZ_ACTIVE 0
#define LANGUAGE_PL_ACTIVE 0
#define LANGUAGE_TR_ACTIVE 0
#define UI_PRINTER_NAME "RodsRostockMax"
#define UI_PRINTER_COMPANY "SeeMeCNC"
#define UI_PAGES_DURATION 4000
#define UI_ANIMATION 1
#define UI_SPEEDDEPENDENT_POSITIONING 0
#define UI_DISABLE_AUTO_PAGESWITCH 1
#define UI_AUTORETURN_TO_MENU_AFTER 30000
#define FEATURE_UI_KEYS 0
#define UI_ENCODER_SPEED 1
#define UI_REVERSE_ENCODER 0
#define UI_KEY_BOUNCETIME 10
#define UI_KEY_FIRST_REPEAT 500
#define UI_KEY_REDUCE_REPEAT 50
#define UI_KEY_MIN_REPEAT 50
#define FEATURE_BEEPER 0
#define CASE_LIGHTS_PIN -1
#define CASE_LIGHT_DEFAULT_ON 1
#define UI_START_SCREEN_DELAY 1000
#define UI_DYNAMIC_ENCODER_SPEED 1
/**
Beeper sound definitions for short beeps during key actions
and longer beeps for important actions.
Parameter is delay in microseconds and the secons is the number of repetitions.
Values must be in range 1..255
*/
#define BEEPER_SHORT_SEQUENCE 2,2
#define BEEPER_LONG_SEQUENCE 8,8
#define UI_SET_PRESET_HEATED_BED_TEMP_PLA 60
#define UI_SET_PRESET_EXTRUDER_TEMP_PLA 200
#define UI_SET_PRESET_HEATED_BED_TEMP_ABS 110
#define UI_SET_PRESET_EXTRUDER_TEMP_ABS 240
#define UI_SET_MIN_HEATED_BED_TEMP 30
#define UI_SET_MAX_HEATED_BED_TEMP 120
#define UI_SET_MIN_EXTRUDER_TEMP 170
#define UI_SET_MAX_EXTRUDER_TEMP 250
#define UI_SET_EXTRUDER_FEEDRATE 1
#define UI_SET_EXTRUDER_RETRACT_DISTANCE 5
#define NUM_MOTOR_DRIVERS 0

#endif
Cobaltrod
Prints-a-lot
Posts: 32
Joined: Thu Apr 17, 2014 5:28 am

Re: Horizontal Radius missing in EEPROM

Post by Cobaltrod »

And Here's my EEPROM Settings...
RODSEEPROM.png
User avatar
Nylocke
ULTIMATE 3D JEDI
Posts: 1418
Joined: Sun Jun 23, 2013 1:43 pm
Location: Iowa

Re: Horizontal Radius missing in EEPROM

Post by Nylocke »

Your problem is right up at the top, EEPROM_MODE should be any value between 1 and 255. 0 disables EEPROM. I would just set it to 1. All the EEPROM_MODE means is if its > 0 then it is enabled, and it stores the value in EEPROM. Then if you reupload the firmware with a different EEPROM_MODE value (say instead of 1 you do 2) it will see that the number has changed and it will rewrite the current EEPROM values with the new flashed values. If it is the same number it will just keep the old settings.
Cobaltrod
Prints-a-lot
Posts: 32
Joined: Thu Apr 17, 2014 5:28 am

Re: Horizontal Radius missing in EEPROM

Post by Cobaltrod »

I put EEPROM_MODE up at the top for convenience in changing it's value. Changing EEPROM mode from 0->1, 1->2,1->0, 2->1 to load firmware to EEPROM is something I've done dozens of times with multiple Repetier Firmware versions, from SeeMeCNC Website links as well as FW generated with the repetier firmware configuration tool. All in an attempt to calibrate and print. My problem is that I have never been able to correctly calibrate the printer, as per the Rostock Max V1 or V2 docs, because Adjustments to Printer_Radius in the Firmware as per the V1 docs make no difference, (even changing EEPROM_MODE every way possible and going through the tower adjustments each time) as instructed. And for the V2 docs, calibration is via adjustments to "Horizontal Radius" in EEPROM, but I've never been able to see, get, find, locate or set "Horizontal_ Radius" in EEPROM, Because I've never seen it, with any Repetier Firmware version I've every tried. So I'm really hoping someone can help me figure out why Horizontal Radius is never there and how I can get it there, so I can calibrate and print, and enjoy this thing, instead of being frustrated with it.
Cobaltrod
Prints-a-lot
Posts: 32
Joined: Thu Apr 17, 2014 5:28 am

Re: Horizontal Radius missing in EEPROM

Post by Cobaltrod »

Regarding Firmware versions, actually, I've been stuck with the same .92.8 version for half a year now. I reached out for help with that issue a month ago, via commenting in another thread, http://forum.seemecnc.com/viewtopic.php?f=84&t=8778, but hadn't gotten any responses.
My Issue is NOT being able to get my VIKI2 display working with other or older Firmware versions. I have it working in this version only, and haven't been able to get it to work with other versions. I'm trying to find which chunks of code dealing with the VIKI2 display or UI, I need to copy to other firmware versions so that my display works. I need help resolving this issue before moving forward with other firmware versions in an attempts to resolve the issue with the missing horizontal radius.
I have already tried, but have not been successful, so I must assume I'm missing something, somewhere...
geneb
ULTIMATE 3D JEDI
Posts: 5358
Joined: Mon Oct 15, 2012 12:47 pm
Location: Graham, WA
Contact:

Re: Horizontal Radius missing in EEPROM

Post by geneb »

Grab the 4th Ed. user manual and follow the calibration procedure in the appendix. If you're changing the horizontal radius and seeing no change, you're skipping a step somewhere. :)

g.
Delta Power!
Defeat the Cartesian Agenda!
http://www.f15sim.com - 80-0007, The only one of its kind.
http://geneb.simpits.org - Technical and Simulator Projects
User avatar
Jimustanguitar
ULTIMATE 3D JEDI
Posts: 2608
Joined: Sun Mar 31, 2013 1:35 am
Location: Notre Dame area
Contact:

Re: Horizontal Radius missing in EEPROM

Post by Jimustanguitar »

Nylocke wrote:Jim this is the X3 Pro, not the X5 mini. The X3 series still uses the ATMEGA 2560, same thing as the RAMBo and RAMPS.
Nice catch... I was obviously skimming and massed that.
Cobaltrod
Prints-a-lot
Posts: 32
Joined: Thu Apr 17, 2014 5:28 am

Re: Horizontal Radius missing in EEPROM

Post by Cobaltrod »

But Gene, the calibration procedure calls for adjusting "Horizontal Radius"' in the EEPROM, and I can't do that Because it's not listed in my EEPROM settings. If I can get it there I'd be ecstatic to finally, for once, calibrate my printer.
User avatar
Nylocke
ULTIMATE 3D JEDI
Posts: 1418
Joined: Sun Jun 23, 2013 1:43 pm
Location: Iowa

Re: Horizontal Radius missing in EEPROM

Post by Nylocke »

I made a basic config with this tool http://www.repetier.com/firmware/v092/

Be careful when uploading this, I'm not entirely sure about your configuration, it seems that you have a Diamond or something funky set up. Try uploading it and seeing if things start to behave a little better. You can change the config.h file with the configuration tool (the one linked above in the website) by choosing the configuration.h file. It will load everything I set up. The Viki should work and if the configuration.h file you linked is correct the motors should move the correct direction and home correctly. Just keep your finger on the power switch and position the effector at mid point in case.
X3ProViki.zip
(432.93 KiB) Downloaded 337 times
Cobaltrod
Prints-a-lot
Posts: 32
Joined: Thu Apr 17, 2014 5:28 am

Re: Horizontal Radius missing in EEPROM

Post by Cobaltrod »

Hey Nylon,
I installed the v.92.9 firmware you created, made a few changes to Baudrate and MaxLengths, and compiled and uploaded the Firmware and EEPROM. I've attached a side by side of my v.92.8 FW and your V.92.9 FW below for your review. They both contain some, but not all, of the same setting names and the listing order of the settings is different. But most importantly, Neither contain the setting for "Horizontal Radius", which is what we're trying to find, so we can change to calibrate the printer. Any idea why it'snot in your v.92.9 either and/or how we can get it in EEPROM settings?

X3PROVIKI2SEEPROM.png
geneb
ULTIMATE 3D JEDI
Posts: 5358
Joined: Mon Oct 15, 2012 12:47 pm
Location: Graham, WA
Contact:

Re: Horizontal Radius missing in EEPROM

Post by geneb »

I'm willing to bet it's the "Horizontal rod radius" field. If you've got the new arms & carriages, set it to the default value I show in the 4th Ed. user guide and go from there.

g.
Delta Power!
Defeat the Cartesian Agenda!
http://www.f15sim.com - 80-0007, The only one of its kind.
http://geneb.simpits.org - Technical and Simulator Projects
User avatar
Nylocke
ULTIMATE 3D JEDI
Posts: 1418
Joined: Sun Jun 23, 2013 1:43 pm
Location: Iowa

Re: Horizontal Radius missing in EEPROM

Post by Nylocke »

It is the Horizontal Rod radius at 0.0. Looks like its good.
geneb
ULTIMATE 3D JEDI
Posts: 5358
Joined: Mon Oct 15, 2012 12:47 pm
Location: Graham, WA
Contact:

Re: Horizontal Radius missing in EEPROM

Post by geneb »

0.0 isn't a valid value if it actually is the HR value.

g.
Delta Power!
Defeat the Cartesian Agenda!
http://www.f15sim.com - 80-0007, The only one of its kind.
http://geneb.simpits.org - Technical and Simulator Projects
User avatar
Nylocke
ULTIMATE 3D JEDI
Posts: 1418
Joined: Sun Jun 23, 2013 1:43 pm
Location: Iowa

Re: Horizontal Radius missing in EEPROM

Post by Nylocke »

I was saying "Horizontal Rod Radius at 0.0" since that is what "Horizontal Radius" is called in the EEPROM settings. But yeah the original config has some problem (also a lot of weird extra settings I've never seen in any version of Repetier Firmware). The one I sent you is what should be showing up.
User avatar
bvandiepenbos
Printmaster!
Posts: 923
Joined: Thu Apr 05, 2012 11:25 pm
Location: Goshen, IN
Contact:

Re: Horizontal Radius missing in EEPROM

Post by bvandiepenbos »

I think you have to send the "Clear EEPROM" sketch from Arduino THEN reflash firmware to get it to work.
It is in the example sketches

This drove me nuts until I figured out what was going on.
And has tripped me up a few times since, if I forget this step.
~*Brian V.

RostockMAX v2 (Stock)
MAX METAL "ShortyMAX"
MAX METAL Rostock MAX Printer Frame
NEMESIS Air Delta v1 & v2 -Aluminum delta printers
Rostock MAX "KITT" - Tri-Force Frame
GRABER i3 "Slim"
Cobaltrod
Prints-a-lot
Posts: 32
Joined: Thu Apr 17, 2014 5:28 am

Re: Horizontal Radius missing in EEPROM

Post by Cobaltrod »

I was able to use .92.9 FW generated. I followed the calibration steps in the appendix of the 4th Ed Users manual as instructed and changed "Horizontal Rod Radius at 0.0" when the calibration steps specified changing "Horizontal Radius". the Initial value there was 130, and I did two .5 increments to reach calibration at 131. Finally calibrated and printing better than ever. Thanks for the help. ~ Rod
User avatar
Nylocke
ULTIMATE 3D JEDI
Posts: 1418
Joined: Sun Jun 23, 2013 1:43 pm
Location: Iowa

Re: Horizontal Radius missing in EEPROM

Post by Nylocke »

Glad it worked for you. If you have any more troubles feel free to ask.
Post Reply

Return to “Troubleshooting”