Welcome! Log In Create A New Profile

Advanced

no Values in Configuration.h after Download

Posted by Printcontrol 
no Values in Configuration.h after Download
May 16, 2016 06:33AM
Hello Experts,

have a strange issue with the firmware download.

configuration.h contains all Parameters but no values which are defined with the configurator.

Seems taht I have an problem on my system - but no clue which one sad smiley

I'm running windows 7 and had never issues with downloads of Repetier

Thans for any Idea !!

this is the Configuration.h I get :

...
.
.
This file is optimized for version 0.92
generator: [www.repetier.com]

If you are in doubt which named functions use which pins on your board, please check the
pins.h for the used name->pin assignments and your board documentation to verify it is
as you expect.

*/

#define NUM_EXTRUDER
#define MOTHERBOARD
#include "pins.h"

// ################## EDIT THESE SETTINGS MANUALLY ################
// ################ END MANUAL SETTINGS ##########################

#undef FAN_PIN
#define FAN_PIN
#undef FAN2_PIN
#define FAN2_PIN
#undef FAN_BOARD_PIN
#define FAN_BOARD_PIN
#define BOARD_FAN_SPEED
#define FAN_THERMO_PIN
#define FAN_THERMO_MIN_PWM
#define FAN_THERMO_MAX_PWM
#define FAN_THERMO_MIN_TEMP
#define FAN_THERMO_MAX_TEMP
#define FAN_THERMO_THERMISTOR_PIN
#define FAN_THERMO_THERMISTOR_TYPE
#undef X_MIN_PIN
#define X_MIN_PIN
#undef Y_MIN_PIN
#define Y_MIN_PIN
#undef Z_MIN_PIN
#define Z_MIN_PIN
#undef X_MAX_PIN
#define X_MAX_PIN
#undef Y_MAX_PIN
#define Y_MAX_PIN
#undef Z_MAX_PIN
#define Z_MAX_PIN
#undef X_STEP_PIN
#define X_STEP_PIN
#undef X_DIR_PIN
#define X_DIR_PIN
#undef X_ENABLE_PIN
#define X_ENABLE_PIN
#undef Y_STEP_PIN
#define Y_STEP_PIN
#undef Y_DIR_PIN
#define Y_DIR_PIN
#undef Y_ENABLE_PIN
#define Y_ENABLE_PIN
#undef Z_STEP_PIN
#define Z_STEP_PIN
#undef Z_DIR_PIN
#define Z_DIR_PIN
#undef Z_ENABLE_PIN
#define Z_ENABLE_PIN

//#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 being compatible!
//#define COMPAT_PRE1
#define BLUETOOTH_SERIAL
#define BLUETOOTH_BAUD
#define MIXING_EXTRUDER

#define DRIVE_SYSTEM
#define XAXIS_STEPS_PER_MM
#define YAXIS_STEPS_PER_MM
#define ZAXIS_STEPS_PER_MM
#define EXTRUDER_FAN_COOL_TEMP
#define PDM_FOR_EXTRUDER
#define PDM_FOR_COOLER
#define DECOUPLING_TEST_MAX_HOLD_VARIANCE
#define DECOUPLING_TEST_MIN_TEMP_RISE
#define KILL_IF_SENSOR_DEFECT
#define RETRACT_ON_PAUSE
#define PAUSE_START_COMMANDS ""
#define PAUSE_END_COMMANDS ""
#define SHARED_EXTRUDER_HEATER

#define FEATURE_RETRACTION
#define AUTORETRACT_ENABLED
#define RETRACTION_LENGTH
#define RETRACTION_LONG_LENGTH
#define RETRACTION_SPEED
#define RETRACTION_Z_LIFT
#define RETRACTION_UNDO_EXTRA_LENGTH
#define RETRACTION_UNDO_EXTRA_LONG_LENGTH
#define RETRACTION_UNDO_SPEED
#define FILAMENTCHANGE_X_POS
#define FILAMENTCHANGE_Y_POS
#define FILAMENTCHANGE_Z_ADD
#define FILAMENTCHANGE_REHOME
#define FILAMENTCHANGE_SHORTRETRACT
#define FILAMENTCHANGE_LONGRETRACT
#define JAM_STEPS
#define JAM_SLOWDOWN_STEPS
#define JAM_SLOWDOWN_TO
#define JAM_ERROR_STEPS
#define JAM_MIN_STEPS
#define JAM_ACTION

#define RETRACT_DURING_HEATUP true
#define PID_CONTROL_RANGE
#define SKIP_M109_IF_WITHIN
#define SCALE_PID_TO_MAX
#define TEMP_HYSTERESIS
#define EXTRUDE_MAXLENGTH
#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 GENERIC_THERM_VREF 5
#define GENERIC_THERM_NUM_ENTRIES 33
#define HEATER_PWM_SPEED

// ############# Heated bed configuration ########################

#define HAVE_HEATED_BED
#define HEATED_BED_MAX_TEMP
#define SKIP_M190_IF_WITHIN
#define HEATED_BED_SENSOR_TYPE
#define HEATED_BED_SENSOR_PIN
#define HEATED_BED_HEATER_PIN
#define HEATED_BED_SET_INTERVAL
#define HEATED_BED_HEAT_MANAGER
#define HEATED_BED_PID_INTEGRAL_DRIVE_MAX
#define HEATED_BED_PID_INTEGRAL_DRIVE_MIN
#define HEATED_BED_PID_PGAIN_OR_DEAD_TIME
#define HEATED_BED_PID_IGAIN
#define HEATED_BED_PID_DGAIN
#define HEATED_BED_PID_MAX
#define HEATED_BED_DECOUPLE_TEST_PERIOD 0
#define MIN_EXTRUDER_TEMP
#define MAXTEMP
#define MIN_DEFECT_TEMPERATURE
#define MAX_DEFECT_TEMPERATURE

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

/*
If the firmware is in laser mode, it can control a laser output to cut or engrave materials.
Please use this feature only if you know about safety and required protection. Lasers are
dangerous and can hurt or make you blind!!!

The default laser driver only supports laser on and off. Here you control the eĆ­ntensity with
your feedrate. For exchangeable diode lasers this is normally enough. If you need more control
you can set the intensity in a range 0-255 with a custom extension to the driver. See driver.h
and comments on how to extend the functions non invasive with our event system.

If you have a laser - powder system you will like your E override. If moves contain a
increasing extruder position it will laser that move. With this trick you can
use existing fdm slicers to laser the output. Laser width is extrusion width.

Other tools may use M3 and M5 to enable/disable laser. Here G1/G2/G3 moves have laser enabled
and G0 moves have it disables.

In any case, laser only enables while moving. At the end of a move it gets
automatically disabled.
*/

#define SUPPORT_LASER
#define LASER_PIN
#define LASER_ON_HIGH

// ## CNC configuration ##

/*
If the firmware is in CNC mode, it can control a mill with M3/M4/M5. It works
similar to laser mode, but mill keeps enabled during G0 moves and it allows
setting rpm (only with event extension that supports this) and milling direction.
It also can add a delay to wait for spindle to run on full speed.
*/

#define SUPPORT_CNC
#define CNC_WAIT_ON_ENABLE
#define CNC_WAIT_ON_DISABLE
#define CNC_ENABLE_PIN
#define CNC_ENABLE_WITH
#define CNC_DIRECTION_PIN
#define CNC_DIRECTION_CW


#define DEFAULT_PRINTER_MODE

// ################ Endstop configuration #####################

#define ENDSTOP_PULLUP_X_MIN true
#define ENDSTOP_X_MIN_INVERTING false
#define MIN_HARDWARE_ENDSTOP_X false
#define ENDSTOP_PULLUP_Y_MIN true
#define ENDSTOP_Y_MIN_INVERTING false
#define MIN_HARDWARE_ENDSTOP_Y false
#define ENDSTOP_PULLUP_Z_MIN true
#define ENDSTOP_Z_MIN_INVERTING false
#define MIN_HARDWARE_ENDSTOP_Z false
#define ENDSTOP_PULLUP_X_MAX true
#define ENDSTOP_X_MAX_INVERTING false
#define MAX_HARDWARE_ENDSTOP_X false
#define ENDSTOP_PULLUP_Y_MAX true
#define ENDSTOP_Y_MAX_INVERTING false
#define MAX_HARDWARE_ENDSTOP_Y false
#define ENDSTOP_PULLUP_Z_MAX true
#define ENDSTOP_Z_MAX_INVERTING false
#define MAX_HARDWARE_ENDSTOP_Z false
#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
#define ENDSTOP_Y_BACK_MOVE
#define ENDSTOP_Z_BACK_MOVE
#define ENDSTOP_X_RETEST_REDUCTION_FACTOR
#define ENDSTOP_Y_RETEST_REDUCTION_FACTOR
#define ENDSTOP_Z_RETEST_REDUCTION_FACTOR
#define ENDSTOP_X_BACK_ON_HOME
#define ENDSTOP_Y_BACK_ON_HOME
#define ENDSTOP_Z_BACK_ON_HOME
#define ALWAYS_CHECK_ENDSTOPS

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

#define X_ENABLE_ON
#define Y_ENABLE_ON
#define Z_ENABLE_ON
#define DISABLE_X
#define DISABLE_Y
#define DISABLE_Z
#define DISABLE_E
#define INVERT_X_DIR
#define INVERT_Y_DIR
#define INVERT_Z_DIR
#define X_HOME_DIR
#define Y_HOME_DIR
#define Z_HOME_DIR
#define X_MAX_LENGTH
#define Y_MAX_LENGTH
#define Z_MAX_LENGTH
#define X_MIN_POS
#define Y_MIN_POS
#define Z_MIN_POS
#define DISTORTION_CORRECTION
#define DISTORTION_CORRECTION_POINTS
#define DISTORTION_CORRECTION_R
#define DISTORTION_PERMANENT
#define DISTORTION_UPDATE_FREQUENCY
#define DISTORTION_START_DEGRADE
#define DISTORTION_END_HEIGHT
#define DISTORTION_EXTRAPOLATE_CORNERS
#define DISTORTION_XMIN
#define DISTORTION_YMIN
#define DISTORTION_XMAX
#define DISTORTION_YMAX

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

#define FEATURE_BABYSTEPPING
#define BABYSTEP_MULTIPLICATOR

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

// Delta settings
#define DELTA_HOME_ON_POWER

#define DELTASEGMENTS_PER_PRINTLINE
#define STEPPER_INACTIVE_TIME L
#define MAX_INACTIVE_TIME L
#define MAX_FEEDRATE_X
#define MAX_FEEDRATE_Y
#define MAX_FEEDRATE_Z
#define HOMING_FEEDRATE_X
#define HOMING_FEEDRATE_Y
#define HOMING_FEEDRATE_Z
#define HOMING_ORDER
#define ZHOME_MIN_TEMPERATURE
#define ZHOME_HEAT_ALL
#define ZHOME_HEAT_HEIGHT
#define ZHOME_X_POS
#define ZHOME_Y_POS
#define ENABLE_BACKLASH_COMPENSATION
#define X_BACKLASH
#define Y_BACKLASH
#define Z_BACKLASH
#define RAMP_ACCELERATION 1
#define STEPPER_HIGH_DELAY
#define DIRECTION_DELAY
#define STEP_DOUBLER_FREQUENCY
#define ALLOW_QUADSTEPPING
#define DOUBLE_STEP_DELAY // time in microseconds
#define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_X
#define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Y
#define MAX_ACCELERATION_UNITS_PER_SQ_SECOND_Z
#define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_X
#define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Y
#define MAX_TRAVEL_ACCELERATION_UNITS_PER_SQ_SECOND_Z
#define INTERPOLATE_ACCELERATION_WITH_Z
#define ACCELERATION_FACTOR_TOP
#define MAX_JERK
#define MAX_ZJERK
#define PRINTLINE_CACHE_SIZE
#define MOVE_CACHE_LOW
#define LOW_TICKS_PER_MOVE
#define EXTRUDER_SWITCH_XY_SPEED
#define DUAL_X_AXIS
#define FEATURE_TWO_XSTEPPER
#define X2_STEP_PIN
#define X2_DIR_PIN
#define X2_ENABLE_PIN
#define FEATURE_TWO_YSTEPPER
#define Y2_STEP_PIN
#define Y2_DIR_PIN
#define Y2_ENABLE_PIN
#define FEATURE_TWO_ZSTEPPER
#define Z2_STEP_PIN
#define Z2_DIR_PIN
#define Z2_ENABLE_PIN
#define FEATURE_THREE_ZSTEPPER
#define Z3_STEP_PIN
#define Z3_DIR_PIN
#define Z3_ENABLE_PIN
#define FEATURE_DITTO_PRINTING
#define USE_ADVANCE
#define ENABLE_QUADRATIC_ADVANCE


// ################# Misc. settings ##################

#define BAUDRATE
#define ENABLE_POWER_ON_STARTUP
#define POWER_INVERTING
#define KILL_METHOD
#define ACK_WITH_LINENUMBER
#define ECHO_ON_EXECUTE
#define EEPROM_MODE
#undef PS_ON_PIN
#define PS_ON_PIN
#define JSON_OUTPUT

/* ======== Servos =======
Control the servos with
M340 P S / 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
#define SERVO0_PIN
#define SERVO1_PIN
#define SERVO2_PIN
#define SERVO3_PIN
#define SERVO0_NEUTRAL_POS
#define SERVO1_NEUTRAL_POS
#define SERVO2_NEUTRAL_POS
#define SERVO3_NEUTRAL_POS
#define UI_SERVO_CONTROL
#define FAN_KICKSTART_TIME

#define FEATURE_WATCHDOG

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

#define Z_PROBE_Z_OFFSET
#define Z_PROBE_Z_OFFSET_MODE
#define UI_BED_COATING
#define FEATURE_Z_PROBE
#define Z_PROBE_BED_DISTANCE
#define Z_PROBE_PIN
#define Z_PROBE_PULLUP
#define Z_PROBE_ON_HIGH
#define Z_PROBE_X_OFFSET
#define Z_PROBE_Y_OFFSET
#define Z_PROBE_WAIT_BEFORE_TEST
#define Z_PROBE_SPEED
#define Z_PROBE_XY_SPEED
#define Z_PROBE_SWITCHING_DISTANCE
#define Z_PROBE_REPETITIONS
#define Z_PROBE_HEIGHT
#define Z_PROBE_START_SCRIPT ""
#define Z_PROBE_FINISHED_SCRIPT ""
#define Z_PROBE_REQUIRES_HEATING
#define Z_PROBE_MIN_TEMPERATURE
#define FEATURE_AUTOLEVEL
#define Z_PROBE_X1
#define Z_PROBE_Y1
#define Z_PROBE_X2
#define Z_PROBE_Y2
#define Z_PROBE_X3
#define Z_PROBE_Y3
#define BED_LEVELING_METHOD
#define BED_CORRECTION_METHOD
#define BED_LEVELING_GRID_SIZE
#define BED_LEVELING_REPETITIONS
#define BED_MOTOR_1_X
#define BED_MOTOR_1_Y
#define BED_MOTOR_2_X
#define BED_MOTOR_2_Y
#define BED_MOTOR_3_X
#define BED_MOTOR_3_Y
#define BENDING_CORRECTION_A
#define BENDING_CORRECTION_B
#define BENDING_CORRECTION_C
#define FEATURE_AXISCOMP
#define AXISCOMP_TANXY
#define AXISCOMP_TANYZ
#define AXISCOMP_TANXZ

#ifndef SDSUPPORT // Some boards have sd support on board. These define the values already in pins.h
#define SDSUPPORT
#undef SDCARDDETECT
#define SDCARDDETECT
#define SDCARDDETECTINVERTED
#endif
#define SD_EXTENDED_DIR /** 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
#define ARC_SUPPORT
#define FEATURE_MEMORY_POSITION
#define FEATURE_CHECKSUM_FORCED
#define FEATURE_FAN_CONTROL
#define FEATURE_FAN2_CONTROL
#define FEATURE_CONTROLLER
#define ADC_KEYPAD_PIN
#define LANGUAGE_EN_ACTIVE
#define LANGUAGE_DE_ACTIVE
#define LANGUAGE_NL_ACTIVE
#define LANGUAGE_PT_ACTIVE
#define LANGUAGE_IT_ACTIVE
#define LANGUAGE_ES_ACTIVE
#define LANGUAGE_FI_ACTIVE
#define LANGUAGE_SE_ACTIVE
#define LANGUAGE_FR_ACTIVE
#define LANGUAGE_CZ_ACTIVE
#define LANGUAGE_PL_ACTIVE
#define LANGUAGE_TR_ACTIVE
#define UI_PRINTER_NAME ""
#define UI_PRINTER_COMPANY ""
#define UI_PAGES_DURATION
#define UI_ANIMATION
#define UI_SPEEDDEPENDENT_POSITIONING
#define UI_DISABLE_AUTO_PAGESWITCH
#define UI_AUTORETURN_TO_MENU_AFTER
#define FEATURE_UI_KEYS
#define UI_ENCODER_SPEED
#define UI_REVERSE_ENCODER
#define UI_KEY_BOUNCETIME
#define UI_KEY_FIRST_REPEAT
#define UI_KEY_REDUCE_REPEAT
#define UI_KEY_MIN_REPEAT
#define FEATURE_BEEPER
#define CASE_LIGHTS_PIN
#define CASE_LIGHT_DEFAULT_ON
#define UI_START_SCREEN_DELAY
#define UI_DYNAMIC_ENCODER_SPEED
/**
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
#define UI_SET_PRESET_EXTRUDER_TEMP_PLA
#define UI_SET_PRESET_HEATED_BED_TEMP_ABS
#define UI_SET_PRESET_EXTRUDER_TEMP_ABS
#define UI_SET_MIN_HEATED_BED_TEMP
#define UI_SET_MAX_HEATED_BED_TEMP
#define UI_SET_MIN_EXTRUDER_TEMP
#define UI_SET_MAX_EXTRUDER_TEMP
#define UI_SET_EXTRUDER_FEEDRATE
#define UI_SET_EXTRUDER_RETRACT_DISTANCE


#define NUM_MOTOR_DRIVERS



#endif

/* Below you will find the configuration string, that created this Configuration.h

========== Start configuration string ==========
null
========== End configuration string ==========

*/

Edited 1 time(s). Last edit at 05/16/2016 06:34AM by Printcontrol.
Re: no Values in Configuration.h after Download
June 03, 2016 08:49AM
That error happens when the session was not yet created. Second download always worked. Should be solved by now also for first download.


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!
Sorry, only registered users may post in this forum.

Click here to login