1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318 |
-
-
-
- #ifndef CONFIGURATION_H
- #define CONFIGURATION_H
-
-
- #define CONFIGURATION_H_VERSION 010100
-
- #include "boards.h"
- #include "macros.h"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #if ENABLED(USE_AUTOMATIC_VERSIONING)
- #include "_Version.h"
- #else
- #include "Version.h"
- #endif
-
-
-
-
- #define STRING_CONFIG_H_AUTHOR "(none, default config)"
- #define SHOW_BOOTSCREEN
- #define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION
- #define STRING_SPLASH_LINE2 WEBSITE_URL
-
-
-
-
-
-
-
-
-
-
-
-
-
- #if ENABLED(SHOW_BOOTSCREEN) && ENABLED(SHOW_CUSTOM_BOOTSCREEN)
- #include "_bootscreen.h"
- #endif
-
-
-
-
-
-
-
- #define SERIAL_PORT 0
-
-
-
- #define BAUDRATE 250000
-
-
-
-
-
-
- #ifndef MOTHERBOARD
- #define MOTHERBOARD BOARD_FELIX2
- #endif
-
-
-
- #define CUSTOM_MACHINE_NAME "Felix"
-
-
-
-
-
-
-
- #define EXTRUDERS 1
-
-
-
-
-
-
-
- #if ENABLED(SWITCHING_EXTRUDER)
- #define SWITCHING_EXTRUDER_SERVO_NR 0
- #define SWITCHING_EXTRUDER_SERVO_ANGLES { 0, 90 }
-
- #endif
-
-
-
- #if ENABLED(MIXING_EXTRUDER)
- #define MIXING_STEPPERS 2
- #define MIXING_VIRTUAL_TOOLS 16
-
- #endif
-
-
-
-
-
-
-
-
-
-
-
- #define POWER_SUPPLY 1
-
-
- #define PS_DEFAULT_OFF
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define TEMP_SENSOR_0 1
- #define TEMP_SENSOR_1 0
- #define TEMP_SENSOR_2 0
- #define TEMP_SENSOR_3 0
- #define TEMP_SENSOR_BED 1
-
-
-
- #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
-
-
- #define TEMP_RESIDENCY_TIME 15
- #define TEMP_HYSTERESIS 3
- #define TEMP_WINDOW 1
-
-
- #define TEMP_BED_RESIDENCY_TIME 0
- #define TEMP_BED_HYSTERESIS 3
- #define TEMP_BED_WINDOW 1
-
-
-
-
- #define HEATER_0_MINTEMP 5
- #define HEATER_1_MINTEMP 5
- #define HEATER_2_MINTEMP 5
- #define HEATER_3_MINTEMP 5
- #define BED_MINTEMP 5
-
-
-
-
- #define HEATER_0_MAXTEMP 275
- #define HEATER_1_MAXTEMP 275
- #define HEATER_2_MAXTEMP 275
- #define HEATER_3_MAXTEMP 275
- #define BED_MAXTEMP 150
-
-
-
-
-
-
-
-
-
-
-
- #define PIDTEMP
- #define BANG_MAX 255
- #define PID_MAX BANG_MAX
- #if ENABLED(PIDTEMP)
-
-
-
-
-
-
- #define PID_FUNCTIONAL_RANGE 10
-
- #define PID_INTEGRAL_DRIVE_MAX PID_MAX
- #define K1 0.95
-
-
- #define DEFAULT_Kp 12
- #define DEFAULT_Ki 0.84
- #define DEFAULT_Kd 85
-
- #endif
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define PIDTEMPBED
-
-
-
-
-
-
-
- #define MAX_BED_POWER 255
-
- #if ENABLED(PIDTEMPBED)
-
-
-
- #define PID_BED_INTEGRAL_DRIVE_MAX MAX_BED_POWER
-
-
- #define DEFAULT_bedKp 103.37
- #define DEFAULT_bedKi 2.79
- #define DEFAULT_bedKd 956.94
-
-
- #endif
-
-
-
-
-
- #define PREVENT_DANGEROUS_EXTRUDE
-
- #define PREVENT_LENGTHY_EXTRUDE
-
- #define EXTRUDE_MINTEMP 170
- #define EXTRUDE_MAXLENGTH (X_MAX_LENGTH+Y_MAX_LENGTH)
-
-
-
-
-
-
-
- #define THERMAL_PROTECTION_HOTENDS
- #define THERMAL_PROTECTION_BED
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define USE_XMIN_PLUG
- #define USE_YMIN_PLUG
- #define USE_ZMIN_PLUG
-
-
-
-
-
- #define ENDSTOPPULLUPS
-
- #if DISABLED(ENDSTOPPULLUPS)
-
-
-
-
-
-
-
-
- #endif
-
-
- #define X_MIN_ENDSTOP_INVERTING false
- #define Y_MIN_ENDSTOP_INVERTING false
- #define Z_MIN_ENDSTOP_INVERTING false
- #define X_MAX_ENDSTOP_INVERTING true
- #define Y_MAX_ENDSTOP_INVERTING true
- #define Z_MAX_ENDSTOP_INVERTING true
- #define Z_MIN_PROBE_ENDSTOP_INVERTING false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define X_PROBE_OFFSET_FROM_EXTRUDER -25
- #define Y_PROBE_OFFSET_FROM_EXTRUDER -29
- #define Z_PROBE_OFFSET_FROM_EXTRUDER -12.35
-
-
- #define XY_PROBE_SPEED 8000
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define Z_RAISE_PROBE_DEPLOY_STOW 15
- #define Z_RAISE_BETWEEN_PROBINGS 5
-
-
-
-
- #define Z_PROBE_OFFSET_RANGE_MIN -20
- #define Z_PROBE_OFFSET_RANGE_MAX 20
-
-
-
- #define X_ENABLE_ON 0
- #define Y_ENABLE_ON 0
- #define Z_ENABLE_ON 0
- #define E_ENABLE_ON 0
-
-
-
- #define DISABLE_X false
- #define DISABLE_Y false
- #define DISABLE_Z false
-
-
-
-
-
- #define DISABLE_E false
- #define DISABLE_INACTIVE_EXTRUDER true
-
-
-
-
- #define INVERT_X_DIR true
- #define INVERT_Y_DIR true
- #define INVERT_Z_DIR true
-
-
-
-
- #define INVERT_E0_DIR false
- #define INVERT_E1_DIR false
- #define INVERT_E2_DIR false
- #define INVERT_E3_DIR false
-
-
-
-
-
-
-
-
-
- #define X_HOME_DIR -1
- #define Y_HOME_DIR -1
- #define Z_HOME_DIR -1
-
- #define min_software_endstops true
- #define max_software_endstops true
-
-
-
-
- #define X_MIN_POS 0
- #define Y_MIN_POS 0
- #define Z_MIN_POS 0
- #define X_MAX_POS 255
- #define Y_MAX_POS 205
- #define Z_MAX_POS 235
-
-
-
-
-
-
-
-
- #if ENABLED(FILAMENT_RUNOUT_SENSOR)
- const bool FIL_RUNOUT_INVERTING = false;
- #define ENDSTOPPULLUP_FIL_RUNOUT
- #define FILAMENT_RUNOUT_SCRIPT "M600"
- #endif
-
-
-
-
-
-
-
- #if ENABLED(MESH_BED_LEVELING)
- #define MESH_INSET 10
- #define MESH_NUM_X_POINTS 3
- #define MESH_NUM_Y_POINTS 3
- #define MESH_HOME_SEARCH_Z 4
-
-
-
-
-
- #if ENABLED(MANUAL_BED_LEVELING)
- #define MBL_Z_STEP 0.025
- #endif
-
- #endif
-
-
-
-
-
-
-
-
-
-
- #if ENABLED(AUTO_BED_LEVELING_FEATURE)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define AUTO_BED_LEVELING_GRID
-
- #if ENABLED(AUTO_BED_LEVELING_GRID)
-
- #define LEFT_PROBE_BED_POSITION 15
- #define RIGHT_PROBE_BED_POSITION 170
- #define FRONT_PROBE_BED_POSITION 20
- #define BACK_PROBE_BED_POSITION 180
-
- #define MIN_PROBE_EDGE 10
-
-
-
- #define AUTO_BED_LEVELING_GRID_POINTS 2
-
- #else
-
-
-
- #define ABL_PROBE_PT_1_X 15
- #define ABL_PROBE_PT_1_Y 180
- #define ABL_PROBE_PT_2_X 15
- #define ABL_PROBE_PT_2_Y 20
- #define ABL_PROBE_PT_3_X 170
- #define ABL_PROBE_PT_3_Y 20
-
- #endif
-
-
-
-
-
-
-
- #endif
-
-
-
-
-
-
-
-
-
-
- #if ENABLED(MANUAL_HOME_POSITIONS)
- #define MANUAL_X_HOME_POS 0
- #define MANUAL_Y_HOME_POS 0
- #define MANUAL_Z_HOME_POS 0
-
- #endif
-
-
-
-
-
-
-
-
-
-
-
- #if ENABLED(Z_SAFE_HOMING)
- #define Z_SAFE_HOMING_X_POINT ((X_MIN_POS + X_MAX_POS) / 2)
- #define Z_SAFE_HOMING_Y_POINT ((Y_MIN_POS + Y_MAX_POS) / 2)
- #endif
-
-
-
-
-
-
- #define HOMING_FEEDRATE {50*60, 50*60, 4*60, 0}
-
-
-
-
- #define DEFAULT_AXIS_STEPS_PER_UNIT {76.190476, 76.190476, 1600, 164}
- #define DEFAULT_MAX_FEEDRATE {500, 500, 5, 25}
- #define DEFAULT_MAX_ACCELERATION {5000,5000,100,80000}
-
- #define DEFAULT_ACCELERATION 1750
- #define DEFAULT_RETRACT_ACCELERATION 5000
- #define DEFAULT_TRAVEL_ACCELERATION 3000
-
-
- #define DEFAULT_XYJERK 10
- #define DEFAULT_ZJERK 0.3
- #define DEFAULT_EJERK 5.0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #if ENABLED(EEPROM_SETTINGS)
-
- #define EEPROM_CHITCHAT
- #endif
-
-
-
-
-
-
-
- #define HOST_KEEPALIVE_FEATURE
- #define DEFAULT_KEEPALIVE_INTERVAL 2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define PREHEAT_1_TEMP_HOTEND 180
- #define PREHEAT_1_TEMP_BED 70
- #define PREHEAT_1_FAN_SPEED 255
-
- #define PREHEAT_2_TEMP_HOTEND 240
- #define PREHEAT_2_TEMP_BED 100
- #define PREHEAT_2_FAN_SPEED 255
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #if ENABLED(NOZZLE_PARK_FEATURE)
-
- #define NOZZLE_PARK_POINT { (X_MIN_POS + 10), (Y_MAX_POS - 10), 20 }
- #endif
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #if ENABLED(NOZZLE_CLEAN_FEATURE)
-
- #define NOZZLE_CLEAN_STROKES 12
-
-
- #define NOZZLE_CLEAN_START_PT { 30, 30, (Z_MIN_POS + 5)}
- #define NOZZLE_CLEAN_END_PT {100, 60, (Z_MIN_POS + 5)}
-
-
- #define NOZZLE_CLEAN_PARK
- #endif
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define PRINTJOB_TIMER_AUTOSTART
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define DISPLAY_CHARSET_HD44780 JAPANESE
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #if ENABLED(SAV_3DGLCD)
-
- #define U8GLIB_SH1106
- #endif
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define FAST_PWM_FAN
-
-
-
-
-
-
-
-
-
-
- #define SOFT_PWM_SCALE 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- #define SERVO_DELAY 300
-
-
-
-
-
-
-
-
-
-
- #define DEFAULT_NOMINAL_FILAMENT_DIA 3.00
-
- #if ENABLED(FILAMENT_WIDTH_SENSOR)
- #define FILAMENT_SENSOR_EXTRUDER_NUM 0
- #define MEASUREMENT_DELAY_CM 14
-
- #define MEASURED_UPPER_LIMIT 3.30
- #define MEASURED_LOWER_LIMIT 1.90
- #define MAX_MEASUREMENT_DELAY 20
-
- #define DEFAULT_MEASURED_FILAMENT_DIA DEFAULT_NOMINAL_FILAMENT_DIA
-
-
-
- #endif
-
- #include "Configuration_adv.h"
- #include "thermistortables.h"
-
- #endif
|