Bladeren bron

Bring configurations up to date, fix some comments

Scott Lahteine 8 jaren geleden
bovenliggende
commit
5b03f23fa2
32 gewijzigde bestanden met toevoegingen van 182 en 161 verwijderingen
  1. 14
    4
      Marlin/Configuration.h
  2. 2
    2
      Marlin/Configuration_adv.h
  3. 30
    24
      Marlin/example_configurations/Anet/Configuration.h
  4. 24
    19
      Marlin/example_configurations/Anet/Configuration_adv.h
  5. 4
    4
      Marlin/example_configurations/CL-260/Configuration.h
  6. 4
    4
      Marlin/example_configurations/Cartesio/Configuration.h
  7. 4
    4
      Marlin/example_configurations/Felix/Configuration.h
  8. 4
    4
      Marlin/example_configurations/Felix/DUAL/Configuration.h
  9. 4
    4
      Marlin/example_configurations/FolgerTech-i3-2020/Configuration.h
  10. 4
    4
      Marlin/example_configurations/Hephestos/Configuration.h
  11. 4
    4
      Marlin/example_configurations/Hephestos_2/Configuration.h
  12. 4
    4
      Marlin/example_configurations/K8200/Configuration.h
  13. 4
    4
      Marlin/example_configurations/K8400/Configuration.h
  14. 4
    4
      Marlin/example_configurations/K8400/Dual-head/Configuration.h
  15. 4
    4
      Marlin/example_configurations/M150/Configuration.h
  16. 4
    4
      Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h
  17. 4
    4
      Marlin/example_configurations/RigidBot/Configuration.h
  18. 4
    4
      Marlin/example_configurations/SCARA/Configuration.h
  19. 4
    4
      Marlin/example_configurations/TAZ4/Configuration.h
  20. 4
    4
      Marlin/example_configurations/TinyBoy2/Configuration.h
  21. 4
    4
      Marlin/example_configurations/WITBOX/Configuration.h
  22. 4
    4
      Marlin/example_configurations/adafruit/ST7565/Configuration.h
  23. 4
    4
      Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h
  24. 4
    4
      Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h
  25. 4
    4
      Marlin/example_configurations/delta/generic/Configuration.h
  26. 4
    4
      Marlin/example_configurations/delta/kossel_mini/Configuration.h
  27. 4
    4
      Marlin/example_configurations/delta/kossel_pro/Configuration.h
  28. 4
    4
      Marlin/example_configurations/delta/kossel_xl/Configuration.h
  29. 4
    4
      Marlin/example_configurations/gCreate_gMax1.5+/Configuration.h
  30. 4
    4
      Marlin/example_configurations/makibox/Configuration.h
  31. 4
    4
      Marlin/example_configurations/tvrrug/Round2/Configuration.h
  32. 4
    4
      Marlin/example_configurations/wt150/Configuration.h

+ 14
- 4
Marlin/Configuration.h Bestand weergeven

988
 // M500 - stores parameters in EEPROM
988
 // M500 - stores parameters in EEPROM
989
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
989
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
990
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
990
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
991
-//define this to enable EEPROM support
991
+// Define this to enable EEPROM support
992
 //#define EEPROM_SETTINGS
992
 //#define EEPROM_SETTINGS
993
 
993
 
994
 #if ENABLED(EEPROM_SETTINGS)
994
 #if ENABLED(EEPROM_SETTINGS)
1393
 //#define BQ_LCD_SMART_CONTROLLER
1393
 //#define BQ_LCD_SMART_CONTROLLER
1394
 
1394
 
1395
 //
1395
 //
1396
+// ANET_10 Controller supported displays.
1397
+//
1398
+//#define ANET_KEYPAD_LCD         // Requires ADC_KEYPAD_PIN to be assigned to an analog pin.
1399
+                                  // This LCD is known to be susceptible to electrical interference
1400
+                                  // which scrambles the display.  Pressing any button clears it up.
1401
+//#define ANET_FULL_GRAPHICS_LCD  // Anet 128x64 full graphics lcd with rotary encoder as used on Anet A6
1402
+                                  // A clone of the RepRapDiscount full graphics display but with
1403
+                                  // different pins/wiring (see pins_ANET_10.h).
1404
+
1405
+//
1396
 // CONTROLLER TYPE: I2C
1406
 // CONTROLLER TYPE: I2C
1397
 //
1407
 //
1398
 // Note: These controllers require the installation of Arduino's LiquidCrystal_I2C
1408
 // Note: These controllers require the installation of Arduino's LiquidCrystal_I2C
1501
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1511
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1502
 //#define SF_ARC_FIX
1512
 //#define SF_ARC_FIX
1503
 
1513
 
1504
-// Support for the BariCUDA Paste Extruder.
1514
+// Support for the BariCUDA Paste Extruder
1505
 //#define BARICUDA
1515
 //#define BARICUDA
1506
 
1516
 
1507
-//define BlinkM/CyzRgb Support
1517
+// Support for BlinkM/CyzRgb
1508
 //#define BLINKM
1518
 //#define BLINKM
1509
 
1519
 
1510
-//define PCA9632 PWM LED driver Support
1520
+// Support for PCA9632 PWM LED driver
1511
 //#define PCA9632
1521
 //#define PCA9632
1512
 
1522
 
1513
 /**
1523
 /**

+ 2
- 2
Marlin/Configuration_adv.h Bestand weergeven

123
   #define AUTOTEMP_OLDWEIGHT 0.98
123
   #define AUTOTEMP_OLDWEIGHT 0.98
124
 #endif
124
 #endif
125
 
125
 
126
-//Show Temperature ADC value
127
-//The M105 command return, besides traditional information, the ADC value read from temperature sensors.
126
+// Show Temperature ADC value
127
+// Enable for M105 to include ADC values read from temperature sensors.
128
 //#define SHOW_TEMP_ADC_VALUES
128
 //#define SHOW_TEMP_ADC_VALUES
129
 
129
 
130
 /**
130
 /**

+ 30
- 24
Marlin/example_configurations/Anet/Configuration.h Bestand weergeven

58
 //===========================================================================
58
 //===========================================================================
59
 //============================= DELTA Printer ===============================
59
 //============================= DELTA Printer ===============================
60
 //===========================================================================
60
 //===========================================================================
61
-// For a Delta printer replace the configuration files with the files in the
62
-// example_configurations/delta directory.
61
+// For a Delta printer start with one of the configuration files in the
62
+// example_configurations/delta directory and customize for your machine.
63
 //
63
 //
64
 
64
 
65
 //===========================================================================
65
 //===========================================================================
66
 //============================= SCARA Printer ===============================
66
 //============================= SCARA Printer ===============================
67
 //===========================================================================
67
 //===========================================================================
68
-// For a Scara printer replace the configuration files with the files in the
69
-// example_configurations/SCARA directory.
68
+// For a SCARA printer start with the configuration files in
69
+// example_configurations/SCARA and customize for your machine.
70
 //
70
 //
71
 
71
 
72
 // @section info
72
 // @section info
161
 //#define SWITCHING_EXTRUDER
161
 //#define SWITCHING_EXTRUDER
162
 #if ENABLED(SWITCHING_EXTRUDER)
162
 #if ENABLED(SWITCHING_EXTRUDER)
163
   #define SWITCHING_EXTRUDER_SERVO_NR 0
163
   #define SWITCHING_EXTRUDER_SERVO_NR 0
164
-  #define SWITCHING_EXTRUDER_SERVO_ANGLES { 0, 90 } // Angles for E0, E1
164
+  #define SWITCHING_EXTRUDER_SERVO_ANGLES { 0, 90 } // Angles for E0, E1[, E2, E3]
165
+  #if EXTRUDERS > 3
166
+    #define SWITCHING_EXTRUDER_E23_SERVO_NR 1
167
+  #endif
165
 #endif
168
 #endif
166
 
169
 
167
 // A dual-nozzle that uses a servomotor to raise/lower one of the nozzles
170
 // A dual-nozzle that uses a servomotor to raise/lower one of the nozzles
512
  * Override with M92
515
  * Override with M92
513
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
516
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
514
  */
517
  */
515
-#define DEFAULT_AXIS_STEPS_PER_UNIT   {100, 100, 400, 95}
518
+#define DEFAULT_AXIS_STEPS_PER_UNIT   { 100, 100, 400, 95 }
516
 
519
 
517
 /**
520
 /**
518
  * Default Max Feed Rate (mm/s)
521
  * Default Max Feed Rate (mm/s)
519
  * Override with M203
522
  * Override with M203
520
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
523
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
521
  */
524
  */
522
-#define DEFAULT_MAX_FEEDRATE          {400, 400, 8, 50}
525
+#define DEFAULT_MAX_FEEDRATE          { 400, 400, 8, 50 }
523
 
526
 
524
 /**
527
 /**
525
  * Default Max Acceleration (change/s) change = mm/s
528
  * Default Max Acceleration (change/s) change = mm/s
527
  * Override with M201
530
  * Override with M201
528
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
531
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
529
  */
532
  */
530
-#define DEFAULT_MAX_ACCELERATION      {2000, 2000, 100, 10000}
533
+#define DEFAULT_MAX_ACCELERATION      { 2000, 2000, 100, 10000 }
531
 
534
 
532
 /**
535
 /**
533
  * Default Acceleration (change/s) change = mm/s
536
  * Default Acceleration (change/s) change = mm/s
596
  * Probe Type
599
  * Probe Type
597
  *
600
  *
598
  * Allen Key Probes, Servo Probes, Z-Sled Probes, FIX_MOUNTED_PROBE, etc.
601
  * Allen Key Probes, Servo Probes, Z-Sled Probes, FIX_MOUNTED_PROBE, etc.
599
- * Activate one of these to use Auto Bed Leveling below.
602
+ * You must activate one of these to use Auto Bed Leveling below.
600
  */
603
  */
601
 
604
 
602
 /**
605
 /**
991
 // M500 - stores parameters in EEPROM
994
 // M500 - stores parameters in EEPROM
992
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
995
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
993
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
996
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
994
-//define this to enable EEPROM support
997
+// Define this to enable EEPROM support
995
 #define EEPROM_SETTINGS
998
 #define EEPROM_SETTINGS
996
 
999
 
997
 #if ENABLED(EEPROM_SETTINGS)
1000
 #if ENABLED(EEPROM_SETTINGS)
1308
 //#define ULTIPANEL
1311
 //#define ULTIPANEL
1309
 
1312
 
1310
 //
1313
 //
1314
+// Cartesio UI
1315
+// http://mauk.cc/webshop/cartesio-shop/electronics/user-interface
1316
+//
1317
+//#define CARTESIO_UI
1318
+
1319
+//
1311
 // PanelOne from T3P3 (via RAMPS 1.4 AUX2/AUX3)
1320
 // PanelOne from T3P3 (via RAMPS 1.4 AUX2/AUX3)
1312
 // http://reprap.org/wiki/PanelOne
1321
 // http://reprap.org/wiki/PanelOne
1313
 //
1322
 //
1392
 //#define BQ_LCD_SMART_CONTROLLER
1401
 //#define BQ_LCD_SMART_CONTROLLER
1393
 
1402
 
1394
 //
1403
 //
1395
-// Cartesio UI
1396
-// http://mauk.cc/webshop/cartesio-shop/electronics/user-interface
1397
-//
1398
-//#define CARTESIO_UI
1399
-
1400
-//
1401
 // ANET_10 Controller supported displays.
1404
 // ANET_10 Controller supported displays.
1402
 //
1405
 //
1403
 #define ANET_KEYPAD_LCD         // Requires ADC_KEYPAD_PIN to be assigned to an analog pin.
1406
 #define ANET_KEYPAD_LCD         // Requires ADC_KEYPAD_PIN to be assigned to an analog pin.
1423
 //
1426
 //
1424
 // Sainsmart YW Robot (LCM1602) LCD Display
1427
 // Sainsmart YW Robot (LCM1602) LCD Display
1425
 //
1428
 //
1429
+// Note: This controller requires F.Malpartida's LiquidCrystal_I2C library
1430
+// https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/Home
1431
+//
1426
 //#define LCD_I2C_SAINSMART_YWROBOT
1432
 //#define LCD_I2C_SAINSMART_YWROBOT
1427
 
1433
 
1428
 //
1434
 //
1454
 //#define U8GLIB_SSD1306
1460
 //#define U8GLIB_SSD1306
1455
 
1461
 
1456
 //
1462
 //
1457
-// TinyBoy2 128x64 OLED / Encoder Panel
1458
-//
1459
-//#define OLED_PANEL_TINYBOY2
1460
-
1461
-//
1462
 // SAV OLEd LCD module support using either SSD1306 or SH1106 based LCD modules
1463
 // SAV OLEd LCD module support using either SSD1306 or SH1106 based LCD modules
1463
 //
1464
 //
1464
 //#define SAV_3DGLCD
1465
 //#define SAV_3DGLCD
1475
 //
1476
 //
1476
 //#define SAV_3DLCD
1477
 //#define SAV_3DLCD
1477
 
1478
 
1479
+//
1480
+// TinyBoy2 128x64 OLED / Encoder Panel
1481
+//
1482
+//#define OLED_PANEL_TINYBOY2
1483
+
1478
 //=============================================================================
1484
 //=============================================================================
1479
 //=============================== Extra Features ==============================
1485
 //=============================== Extra Features ==============================
1480
 //=============================================================================
1486
 //=============================================================================
1513
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1519
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1514
 //#define SF_ARC_FIX
1520
 //#define SF_ARC_FIX
1515
 
1521
 
1516
-// Support for the BariCUDA Paste Extruder.
1522
+// Support for the BariCUDA Paste Extruder
1517
 //#define BARICUDA
1523
 //#define BARICUDA
1518
 
1524
 
1519
-//define BlinkM/CyzRgb Support
1525
+// Support for BlinkM/CyzRgb
1520
 //#define BLINKM
1526
 //#define BLINKM
1521
 
1527
 
1522
-//define PCA9632 PWM LED driver Support
1528
+// Support for PCA9632 PWM LED driver
1523
 //#define PCA9632
1529
 //#define PCA9632
1524
 
1530
 
1525
 /**
1531
 /**

+ 24
- 19
Marlin/example_configurations/Anet/Configuration_adv.h Bestand weergeven

225
  */
225
  */
226
 //#define CASE_LIGHT_ENABLE
226
 //#define CASE_LIGHT_ENABLE
227
 #if ENABLED(CASE_LIGHT_ENABLE)
227
 #if ENABLED(CASE_LIGHT_ENABLE)
228
-  #define CASE_LIGHT_PIN 4          // can be defined here or in the pins_XXX.h file for your board
229
-                                    //  pins_XXX.h file overrides this one
230
-  #define INVERT_CASE_LIGHT false             // set to true if case light is ON when pin is at 0
231
-  #define CASE_LIGHT_DEFAULT_ON true          // set default power up state to on or off
232
-  #define CASE_LIGHT_DEFAULT_BRIGHTNESS 105   // set power up brightness 0-255 ( only used if on PWM
233
-                                              // and if CASE_LIGHT_DEFAULT is set to on
234
-  //#define MENU_ITEM_CASE_LIGHT              // Uncomment to have a Case Light entry in main menu
228
+  //#define CASE_LIGHT_PIN 4                  // Override the default pin if needed
229
+  #define INVERT_CASE_LIGHT false             // Set true if Case Light is ON when pin is LOW
230
+  #define CASE_LIGHT_DEFAULT_ON true          // Set default power-up state on
231
+  #define CASE_LIGHT_DEFAULT_BRIGHTNESS 105   // Set default power-up brightness (0-255, requires PWM pin)
232
+  //#define MENU_ITEM_CASE_LIGHT              // Add a Case Light option to the LCD main menu
235
 #endif
233
 #endif
236
 
234
 
237
 //===========================================================================
235
 //===========================================================================
421
  *    M908 - BQ_ZUM_MEGA_3D, RAMBO, PRINTRBOARD_REVF, RIGIDBOARD_V2 & SCOOVO_X9H
419
  *    M908 - BQ_ZUM_MEGA_3D, RAMBO, PRINTRBOARD_REVF, RIGIDBOARD_V2 & SCOOVO_X9H
422
  *    M909, M910 & LCD - only PRINTRBOARD_REVF & RIGIDBOARD_V2
420
  *    M909, M910 & LCD - only PRINTRBOARD_REVF & RIGIDBOARD_V2
423
  */
421
  */
424
-//#define PWM_MOTOR_CURRENT {1300, 1300, 1250} // Values in milliamps
425
-//#define DIGIPOT_MOTOR_CURRENT {135,135,135,135,135} // Values 0-255 (RAMBO 135 = ~0.75A, 185 = ~1A)
426
-//#define DAC_MOTOR_CURRENT_DEFAULT { 70, 80, 90, 80 } // Default drive percent - X, Y, Z, E axis
422
+//#define PWM_MOTOR_CURRENT { 1300, 1300, 1250 }          // Values in milliamps
423
+//#define DIGIPOT_MOTOR_CURRENT { 135,135,135,135,135 }   // Values 0-255 (RAMBO 135 = ~0.75A, 185 = ~1A)
424
+//#define DAC_MOTOR_CURRENT_DEFAULT { 70, 80, 90, 80 }    // Default drive percent - X, Y, Z, E axis
427
 
425
 
428
 // Uncomment to enable an I2C based DIGIPOT like on the Azteeg X3 Pro
426
 // Uncomment to enable an I2C based DIGIPOT like on the Azteeg X3 Pro
429
 //#define DIGIPOT_I2C
427
 //#define DIGIPOT_I2C
430
 //#define DIGIPOT_MCP4018          // Requires library from https://github.com/stawel/SlowSoftI2CMaster
428
 //#define DIGIPOT_MCP4018          // Requires library from https://github.com/stawel/SlowSoftI2CMaster
431
 #define DIGIPOT_I2C_NUM_CHANNELS 8 // 5DPRINT: 4     AZTEEG_X3_PRO: 8
429
 #define DIGIPOT_I2C_NUM_CHANNELS 8 // 5DPRINT: 4     AZTEEG_X3_PRO: 8
432
 // Actual motor currents in Amps, need as many here as DIGIPOT_I2C_NUM_CHANNELS
430
 // Actual motor currents in Amps, need as many here as DIGIPOT_I2C_NUM_CHANNELS
433
-#define DIGIPOT_I2C_MOTOR_CURRENTS {1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0}  //  AZTEEG_X3_PRO
431
+#define DIGIPOT_I2C_MOTOR_CURRENTS { 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 }  //  AZTEEG_X3_PRO
434
 
432
 
435
 //===========================================================================
433
 //===========================================================================
436
 //=============================Additional Features===========================
434
 //=============================Additional Features===========================
680
 
678
 
681
 // @section extras
679
 // @section extras
682
 
680
 
683
-// Arc interpretation settings:
684
-//#define ARC_SUPPORT // Disabling this saves ~2738 bytes
685
-#define MM_PER_ARC_SEGMENT 1
686
-#define N_ARC_CORRECTION 25
681
+//
682
+// G2/G3 Arc Support
683
+//
684
+//#define ARC_SUPPORT               // Disable this feature to save ~3226 bytes
685
+#if ENABLED(ARC_SUPPORT)
686
+  #define MM_PER_ARC_SEGMENT  1   // Length of each arc segment
687
+  #define N_ARC_CORRECTION   25   // Number of intertpolated segments between corrections
688
+  //#define ARC_P_CIRCLES         // Enable the 'P' parameter to specify complete circles
689
+  //#define CNC_WORKSPACE_PLANES  // Allow G2/G3 to operate in XY, ZX, or YZ planes
690
+#endif
687
 
691
 
688
 // Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
692
 // Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
689
 //#define BEZIER_CURVE_SUPPORT
693
 //#define BEZIER_CURVE_SUPPORT
809
   #define PAUSE_PARK_NO_STEPPER_TIMEOUT       // Enable to have stepper motors hold position during filament change
813
   #define PAUSE_PARK_NO_STEPPER_TIMEOUT       // Enable to have stepper motors hold position during filament change
810
                                               // even if it takes longer than DEFAULT_STEPPER_DEACTIVE_TIME.
814
                                               // even if it takes longer than DEFAULT_STEPPER_DEACTIVE_TIME.
811
   //#define PARK_HEAD_ON_PAUSE                // Go to filament change position on pause, return to print position on resume
815
   //#define PARK_HEAD_ON_PAUSE                // Go to filament change position on pause, return to print position on resume
816
+  //#define HOME_BEFORE_FILAMENT_CHANGE       // Ensure homing has been completed prior to parking for filament change
812
 #endif
817
 #endif
813
 
818
 
814
 // @section tmc
819
 // @section tmc
1201
 /**
1206
 /**
1202
  * Auto-report temperatures with M155 S<seconds>
1207
  * Auto-report temperatures with M155 S<seconds>
1203
  */
1208
  */
1204
-//#define AUTO_REPORT_TEMPERATURES
1209
+#define AUTO_REPORT_TEMPERATURES
1205
 
1210
 
1206
 /**
1211
 /**
1207
  * Include capabilities in M115 output
1212
  * Include capabilities in M115 output
1208
  */
1213
  */
1209
-//#define EXTENDED_CAPABILITIES_REPORT
1214
+#define EXTENDED_CAPABILITIES_REPORT
1210
 
1215
 
1211
 /**
1216
 /**
1212
  * Volumetric extrusion default state
1217
  * Volumetric extrusion default state
1264
 #endif
1269
 #endif
1265
 
1270
 
1266
 //===========================================================================
1271
 //===========================================================================
1267
-//============================ I2C Encoder Settings =========================
1272
+//====================== I2C Position Encoder Settings ======================
1268
 //===========================================================================
1273
 //===========================================================================
1269
 /**
1274
 /**
1270
  *  I2C position encoders for closed loop control.
1275
  *  I2C position encoders for closed loop control.
1344
   // Use a rolling average to identify persistant errors that indicate skips, as opposed to vibration and noise.
1349
   // Use a rolling average to identify persistant errors that indicate skips, as opposed to vibration and noise.
1345
   #define I2CPE_ERR_ROLLING_AVERAGE
1350
   #define I2CPE_ERR_ROLLING_AVERAGE
1346
 
1351
 
1347
-#endif
1352
+#endif // I2C_POSITION_ENCODERS
1348
 
1353
 
1349
 #endif // CONFIGURATION_ADV_H
1354
 #endif // CONFIGURATION_ADV_H

+ 4
- 4
Marlin/example_configurations/CL-260/Configuration.h Bestand weergeven

985
 // M500 - stores parameters in EEPROM
985
 // M500 - stores parameters in EEPROM
986
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
986
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
987
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
987
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
988
-//define this to enable EEPROM support
988
+// Define this to enable EEPROM support
989
 //#define EEPROM_SETTINGS
989
 //#define EEPROM_SETTINGS
990
 
990
 
991
 #if ENABLED(EEPROM_SETTINGS)
991
 #if ENABLED(EEPROM_SETTINGS)
1508
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1508
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1509
 //#define SF_ARC_FIX
1509
 //#define SF_ARC_FIX
1510
 
1510
 
1511
-// Support for the BariCUDA Paste Extruder.
1511
+// Support for the BariCUDA Paste Extruder
1512
 //#define BARICUDA
1512
 //#define BARICUDA
1513
 
1513
 
1514
-//define BlinkM/CyzRgb Support
1514
+// Support for BlinkM/CyzRgb
1515
 //#define BLINKM
1515
 //#define BLINKM
1516
 
1516
 
1517
-//define PCA9632 PWM LED driver Support
1517
+// Support for PCA9632 PWM LED driver
1518
 //#define PCA9632
1518
 //#define PCA9632
1519
 
1519
 
1520
 /**
1520
 /**

+ 4
- 4
Marlin/example_configurations/Cartesio/Configuration.h Bestand weergeven

982
 // M500 - stores parameters in EEPROM
982
 // M500 - stores parameters in EEPROM
983
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
983
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
984
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
984
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
985
-//define this to enable EEPROM support
985
+// Define this to enable EEPROM support
986
 //#define EEPROM_SETTINGS
986
 //#define EEPROM_SETTINGS
987
 
987
 
988
 #if ENABLED(EEPROM_SETTINGS)
988
 #if ENABLED(EEPROM_SETTINGS)
1505
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1505
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1506
 //#define SF_ARC_FIX
1506
 //#define SF_ARC_FIX
1507
 
1507
 
1508
-// Support for the BariCUDA Paste Extruder.
1508
+// Support for the BariCUDA Paste Extruder
1509
 //#define BARICUDA
1509
 //#define BARICUDA
1510
 
1510
 
1511
-//define BlinkM/CyzRgb Support
1511
+// Support for BlinkM/CyzRgb
1512
 //#define BLINKM
1512
 //#define BLINKM
1513
 
1513
 
1514
-//define PCA9632 PWM LED driver Support
1514
+// Support for PCA9632 PWM LED driver
1515
 //#define PCA9632
1515
 //#define PCA9632
1516
 
1516
 
1517
 /**
1517
 /**

+ 4
- 4
Marlin/example_configurations/Felix/Configuration.h Bestand weergeven

966
 // M500 - stores parameters in EEPROM
966
 // M500 - stores parameters in EEPROM
967
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
967
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
968
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
968
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
969
-//define this to enable EEPROM support
969
+// Define this to enable EEPROM support
970
 //#define EEPROM_SETTINGS
970
 //#define EEPROM_SETTINGS
971
 
971
 
972
 #if ENABLED(EEPROM_SETTINGS)
972
 #if ENABLED(EEPROM_SETTINGS)
1489
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1489
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1490
 //#define SF_ARC_FIX
1490
 //#define SF_ARC_FIX
1491
 
1491
 
1492
-// Support for the BariCUDA Paste Extruder.
1492
+// Support for the BariCUDA Paste Extruder
1493
 //#define BARICUDA
1493
 //#define BARICUDA
1494
 
1494
 
1495
-//define BlinkM/CyzRgb Support
1495
+// Support for BlinkM/CyzRgb
1496
 //#define BLINKM
1496
 //#define BLINKM
1497
 
1497
 
1498
-//define PCA9632 PWM LED driver Support
1498
+// Support for PCA9632 PWM LED driver
1499
 //#define PCA9632
1499
 //#define PCA9632
1500
 
1500
 
1501
 /**
1501
 /**

+ 4
- 4
Marlin/example_configurations/Felix/DUAL/Configuration.h Bestand weergeven

966
 // M500 - stores parameters in EEPROM
966
 // M500 - stores parameters in EEPROM
967
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
967
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
968
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
968
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
969
-//define this to enable EEPROM support
969
+// Define this to enable EEPROM support
970
 //#define EEPROM_SETTINGS
970
 //#define EEPROM_SETTINGS
971
 
971
 
972
 #if ENABLED(EEPROM_SETTINGS)
972
 #if ENABLED(EEPROM_SETTINGS)
1489
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1489
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1490
 //#define SF_ARC_FIX
1490
 //#define SF_ARC_FIX
1491
 
1491
 
1492
-// Support for the BariCUDA Paste Extruder.
1492
+// Support for the BariCUDA Paste Extruder
1493
 //#define BARICUDA
1493
 //#define BARICUDA
1494
 
1494
 
1495
-//define BlinkM/CyzRgb Support
1495
+// Support for BlinkM/CyzRgb
1496
 //#define BLINKM
1496
 //#define BLINKM
1497
 
1497
 
1498
-//define PCA9632 PWM LED driver Support
1498
+// Support for PCA9632 PWM LED driver
1499
 //#define PCA9632
1499
 //#define PCA9632
1500
 
1500
 
1501
 /**
1501
 /**

+ 4
- 4
Marlin/example_configurations/FolgerTech-i3-2020/Configuration.h Bestand weergeven

988
 // M500 - stores parameters in EEPROM
988
 // M500 - stores parameters in EEPROM
989
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
989
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
990
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
990
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
991
-//define this to enable EEPROM support
991
+// Define this to enable EEPROM support
992
 #define EEPROM_SETTINGS
992
 #define EEPROM_SETTINGS
993
 
993
 
994
 #if ENABLED(EEPROM_SETTINGS)
994
 #if ENABLED(EEPROM_SETTINGS)
1511
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1511
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1512
 //#define SF_ARC_FIX
1512
 //#define SF_ARC_FIX
1513
 
1513
 
1514
-// Support for the BariCUDA Paste Extruder.
1514
+// Support for the BariCUDA Paste Extruder
1515
 //#define BARICUDA
1515
 //#define BARICUDA
1516
 
1516
 
1517
-//define BlinkM/CyzRgb Support
1517
+// Support for BlinkM/CyzRgb
1518
 //#define BLINKM
1518
 //#define BLINKM
1519
 
1519
 
1520
-//define PCA9632 PWM LED driver Support
1520
+// Support for PCA9632 PWM LED driver
1521
 //#define PCA9632
1521
 //#define PCA9632
1522
 
1522
 
1523
 /**
1523
 /**

+ 4
- 4
Marlin/example_configurations/Hephestos/Configuration.h Bestand weergeven

974
 // M500 - stores parameters in EEPROM
974
 // M500 - stores parameters in EEPROM
975
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
975
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
976
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
976
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
977
-//define this to enable EEPROM support
977
+// Define this to enable EEPROM support
978
 //#define EEPROM_SETTINGS
978
 //#define EEPROM_SETTINGS
979
 
979
 
980
 #if ENABLED(EEPROM_SETTINGS)
980
 #if ENABLED(EEPROM_SETTINGS)
1497
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1497
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1498
 //#define SF_ARC_FIX
1498
 //#define SF_ARC_FIX
1499
 
1499
 
1500
-// Support for the BariCUDA Paste Extruder.
1500
+// Support for the BariCUDA Paste Extruder
1501
 //#define BARICUDA
1501
 //#define BARICUDA
1502
 
1502
 
1503
-//define BlinkM/CyzRgb Support
1503
+// Support for BlinkM/CyzRgb
1504
 //#define BLINKM
1504
 //#define BLINKM
1505
 
1505
 
1506
-//define PCA9632 PWM LED driver Support
1506
+// Support for PCA9632 PWM LED driver
1507
 //#define PCA9632
1507
 //#define PCA9632
1508
 
1508
 
1509
 /**
1509
 /**

+ 4
- 4
Marlin/example_configurations/Hephestos_2/Configuration.h Bestand weergeven

977
 // M500 - stores parameters in EEPROM
977
 // M500 - stores parameters in EEPROM
978
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
978
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
979
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
979
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
980
-//define this to enable EEPROM support
980
+// Define this to enable EEPROM support
981
 #define EEPROM_SETTINGS
981
 #define EEPROM_SETTINGS
982
 
982
 
983
 #if ENABLED(EEPROM_SETTINGS)
983
 #if ENABLED(EEPROM_SETTINGS)
1500
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1500
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1501
 //#define SF_ARC_FIX
1501
 //#define SF_ARC_FIX
1502
 
1502
 
1503
-// Support for the BariCUDA Paste Extruder.
1503
+// Support for the BariCUDA Paste Extruder
1504
 //#define BARICUDA
1504
 //#define BARICUDA
1505
 
1505
 
1506
-//define BlinkM/CyzRgb Support
1506
+// Support for BlinkM/CyzRgb
1507
 //#define BLINKM
1507
 //#define BLINKM
1508
 
1508
 
1509
-//define PCA9632 PWM LED driver Support
1509
+// Support for PCA9632 PWM LED driver
1510
 //#define PCA9632
1510
 //#define PCA9632
1511
 
1511
 
1512
 /**
1512
 /**

+ 4
- 4
Marlin/example_configurations/K8200/Configuration.h Bestand weergeven

1013
 // M500 - stores parameters in EEPROM
1013
 // M500 - stores parameters in EEPROM
1014
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1014
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1015
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1015
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1016
-//define this to enable EEPROM support
1016
+// Define this to enable EEPROM support
1017
 #define EEPROM_SETTINGS // K8200: uses EEPROM by default
1017
 #define EEPROM_SETTINGS // K8200: uses EEPROM by default
1018
 
1018
 
1019
 #if ENABLED(EEPROM_SETTINGS)
1019
 #if ENABLED(EEPROM_SETTINGS)
1546
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1546
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1547
 //#define SF_ARC_FIX
1547
 //#define SF_ARC_FIX
1548
 
1548
 
1549
-// Support for the BariCUDA Paste Extruder.
1549
+// Support for the BariCUDA Paste Extruder
1550
 //#define BARICUDA
1550
 //#define BARICUDA
1551
 
1551
 
1552
-//define BlinkM/CyzRgb Support
1552
+// Support for BlinkM/CyzRgb
1553
 //#define BLINKM
1553
 //#define BLINKM
1554
 
1554
 
1555
-//define PCA9632 PWM LED driver Support
1555
+// Support for PCA9632 PWM LED driver
1556
 //#define PCA9632
1556
 //#define PCA9632
1557
 
1557
 
1558
 /**
1558
 /**

+ 4
- 4
Marlin/example_configurations/K8400/Configuration.h Bestand weergeven

984
 // M500 - stores parameters in EEPROM
984
 // M500 - stores parameters in EEPROM
985
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
985
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
986
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
986
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
987
-//define this to enable EEPROM support
987
+// Define this to enable EEPROM support
988
 #define EEPROM_SETTINGS
988
 #define EEPROM_SETTINGS
989
 
989
 
990
 #if ENABLED(EEPROM_SETTINGS)
990
 #if ENABLED(EEPROM_SETTINGS)
1507
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1507
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1508
 //#define SF_ARC_FIX
1508
 //#define SF_ARC_FIX
1509
 
1509
 
1510
-// Support for the BariCUDA Paste Extruder.
1510
+// Support for the BariCUDA Paste Extruder
1511
 //#define BARICUDA
1511
 //#define BARICUDA
1512
 
1512
 
1513
-//define BlinkM/CyzRgb Support
1513
+// Support for BlinkM/CyzRgb
1514
 //#define BLINKM
1514
 //#define BLINKM
1515
 
1515
 
1516
-//define PCA9632 PWM LED driver Support
1516
+// Support for PCA9632 PWM LED driver
1517
 //#define PCA9632
1517
 //#define PCA9632
1518
 
1518
 
1519
 /**
1519
 /**

+ 4
- 4
Marlin/example_configurations/K8400/Dual-head/Configuration.h Bestand weergeven

984
 // M500 - stores parameters in EEPROM
984
 // M500 - stores parameters in EEPROM
985
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
985
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
986
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
986
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
987
-//define this to enable EEPROM support
987
+// Define this to enable EEPROM support
988
 #define EEPROM_SETTINGS
988
 #define EEPROM_SETTINGS
989
 
989
 
990
 #if ENABLED(EEPROM_SETTINGS)
990
 #if ENABLED(EEPROM_SETTINGS)
1507
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1507
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1508
 //#define SF_ARC_FIX
1508
 //#define SF_ARC_FIX
1509
 
1509
 
1510
-// Support for the BariCUDA Paste Extruder.
1510
+// Support for the BariCUDA Paste Extruder
1511
 //#define BARICUDA
1511
 //#define BARICUDA
1512
 
1512
 
1513
-//define BlinkM/CyzRgb Support
1513
+// Support for BlinkM/CyzRgb
1514
 //#define BLINKM
1514
 //#define BLINKM
1515
 
1515
 
1516
-//define PCA9632 PWM LED driver Support
1516
+// Support for PCA9632 PWM LED driver
1517
 //#define PCA9632
1517
 //#define PCA9632
1518
 
1518
 
1519
 /**
1519
 /**

+ 4
- 4
Marlin/example_configurations/M150/Configuration.h Bestand weergeven

1011
 // M500 - stores parameters in EEPROM
1011
 // M500 - stores parameters in EEPROM
1012
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1012
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1013
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1013
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1014
-//define this to enable EEPROM support
1014
+// Define this to enable EEPROM support
1015
 #define EEPROM_SETTINGS
1015
 #define EEPROM_SETTINGS
1016
 
1016
 
1017
 #if ENABLED(EEPROM_SETTINGS)
1017
 #if ENABLED(EEPROM_SETTINGS)
1534
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1534
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1535
 //#define SF_ARC_FIX
1535
 //#define SF_ARC_FIX
1536
 
1536
 
1537
-// Support for the BariCUDA Paste Extruder.
1537
+// Support for the BariCUDA Paste Extruder
1538
 //#define BARICUDA
1538
 //#define BARICUDA
1539
 
1539
 
1540
-//define BlinkM/CyzRgb Support
1540
+// Support for BlinkM/CyzRgb
1541
 //#define BLINKM
1541
 //#define BLINKM
1542
 
1542
 
1543
-//define PCA9632 PWM LED driver Support
1543
+// Support for PCA9632 PWM LED driver
1544
 //#define PCA9632
1544
 //#define PCA9632
1545
 
1545
 
1546
 /**
1546
 /**

+ 4
- 4
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h Bestand weergeven

984
 // M500 - stores parameters in EEPROM
984
 // M500 - stores parameters in EEPROM
985
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
985
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
986
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
986
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
987
-//define this to enable EEPROM support
987
+// Define this to enable EEPROM support
988
 //#define EEPROM_SETTINGS
988
 //#define EEPROM_SETTINGS
989
 
989
 
990
 #if ENABLED(EEPROM_SETTINGS)
990
 #if ENABLED(EEPROM_SETTINGS)
1507
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1507
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1508
 //#define SF_ARC_FIX
1508
 //#define SF_ARC_FIX
1509
 
1509
 
1510
-// Support for the BariCUDA Paste Extruder.
1510
+// Support for the BariCUDA Paste Extruder
1511
 //#define BARICUDA
1511
 //#define BARICUDA
1512
 
1512
 
1513
-//define BlinkM/CyzRgb Support
1513
+// Support for BlinkM/CyzRgb
1514
 //#define BLINKM
1514
 //#define BLINKM
1515
 
1515
 
1516
-//define PCA9632 PWM LED driver Support
1516
+// Support for PCA9632 PWM LED driver
1517
 //#define PCA9632
1517
 //#define PCA9632
1518
 
1518
 
1519
 /**
1519
 /**

+ 4
- 4
Marlin/example_configurations/RigidBot/Configuration.h Bestand weergeven

982
 // M500 - stores parameters in EEPROM
982
 // M500 - stores parameters in EEPROM
983
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
983
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
984
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
984
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
985
-//define this to enable EEPROM support
985
+// Define this to enable EEPROM support
986
 #define EEPROM_SETTINGS
986
 #define EEPROM_SETTINGS
987
 
987
 
988
 #if ENABLED(EEPROM_SETTINGS)
988
 #if ENABLED(EEPROM_SETTINGS)
1507
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1507
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1508
 //#define SF_ARC_FIX
1508
 //#define SF_ARC_FIX
1509
 
1509
 
1510
-// Support for the BariCUDA Paste Extruder.
1510
+// Support for the BariCUDA Paste Extruder
1511
 //#define BARICUDA
1511
 //#define BARICUDA
1512
 
1512
 
1513
-//define BlinkM/CyzRgb Support
1513
+// Support for BlinkM/CyzRgb
1514
 //#define BLINKM
1514
 //#define BLINKM
1515
 
1515
 
1516
-//define PCA9632 PWM LED driver Support
1516
+// Support for PCA9632 PWM LED driver
1517
 //#define PCA9632
1517
 //#define PCA9632
1518
 
1518
 
1519
 /**
1519
 /**

+ 4
- 4
Marlin/example_configurations/SCARA/Configuration.h Bestand weergeven

996
 // M500 - stores parameters in EEPROM
996
 // M500 - stores parameters in EEPROM
997
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
997
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
998
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
998
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
999
-//define this to enable EEPROM support
999
+// Define this to enable EEPROM support
1000
 //#define EEPROM_SETTINGS
1000
 //#define EEPROM_SETTINGS
1001
 
1001
 
1002
 #if ENABLED(EEPROM_SETTINGS)
1002
 #if ENABLED(EEPROM_SETTINGS)
1519
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1519
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1520
 //#define SF_ARC_FIX
1520
 //#define SF_ARC_FIX
1521
 
1521
 
1522
-// Support for the BariCUDA Paste Extruder.
1522
+// Support for the BariCUDA Paste Extruder
1523
 //#define BARICUDA
1523
 //#define BARICUDA
1524
 
1524
 
1525
-//define BlinkM/CyzRgb Support
1525
+// Support for BlinkM/CyzRgb
1526
 //#define BLINKM
1526
 //#define BLINKM
1527
 
1527
 
1528
-//define PCA9632 PWM LED driver Support
1528
+// Support for PCA9632 PWM LED driver
1529
 //#define PCA9632
1529
 //#define PCA9632
1530
 
1530
 
1531
 /**
1531
 /**

+ 4
- 4
Marlin/example_configurations/TAZ4/Configuration.h Bestand weergeven

1003
 // M500 - stores parameters in EEPROM
1003
 // M500 - stores parameters in EEPROM
1004
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1004
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1005
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1005
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1006
-//define this to enable EEPROM support
1006
+// Define this to enable EEPROM support
1007
 #define EEPROM_SETTINGS
1007
 #define EEPROM_SETTINGS
1008
 
1008
 
1009
 #if ENABLED(EEPROM_SETTINGS)
1009
 #if ENABLED(EEPROM_SETTINGS)
1526
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1526
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1527
 //#define SF_ARC_FIX
1527
 //#define SF_ARC_FIX
1528
 
1528
 
1529
-// Support for the BariCUDA Paste Extruder.
1529
+// Support for the BariCUDA Paste Extruder
1530
 //#define BARICUDA
1530
 //#define BARICUDA
1531
 
1531
 
1532
-//define BlinkM/CyzRgb Support
1532
+// Support for BlinkM/CyzRgb
1533
 //#define BLINKM
1533
 //#define BLINKM
1534
 
1534
 
1535
-//define PCA9632 PWM LED driver Support
1535
+// Support for PCA9632 PWM LED driver
1536
 //#define PCA9632
1536
 //#define PCA9632
1537
 
1537
 
1538
 /**
1538
 /**

+ 4
- 4
Marlin/example_configurations/TinyBoy2/Configuration.h Bestand weergeven

1040
 // M500 - stores parameters in EEPROM
1040
 // M500 - stores parameters in EEPROM
1041
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1041
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1042
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1042
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1043
-//define this to enable EEPROM support
1043
+// Define this to enable EEPROM support
1044
 #define EEPROM_SETTINGS
1044
 #define EEPROM_SETTINGS
1045
 
1045
 
1046
 #if ENABLED(EEPROM_SETTINGS)
1046
 #if ENABLED(EEPROM_SETTINGS)
1568
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1568
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1569
 //#define SF_ARC_FIX
1569
 //#define SF_ARC_FIX
1570
 
1570
 
1571
-// Support for the BariCUDA Paste Extruder.
1571
+// Support for the BariCUDA Paste Extruder
1572
 //#define BARICUDA
1572
 //#define BARICUDA
1573
 
1573
 
1574
-//define BlinkM/CyzRgb Support
1574
+// Support for BlinkM/CyzRgb
1575
 //#define BLINKM
1575
 //#define BLINKM
1576
 
1576
 
1577
-//define PCA9632 PWM LED driver Support
1577
+// Support for PCA9632 PWM LED driver
1578
 //#define PCA9632
1578
 //#define PCA9632
1579
 
1579
 
1580
 /**
1580
 /**

+ 4
- 4
Marlin/example_configurations/WITBOX/Configuration.h Bestand weergeven

974
 // M500 - stores parameters in EEPROM
974
 // M500 - stores parameters in EEPROM
975
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
975
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
976
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
976
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
977
-//define this to enable EEPROM support
977
+// Define this to enable EEPROM support
978
 //#define EEPROM_SETTINGS
978
 //#define EEPROM_SETTINGS
979
 
979
 
980
 #if ENABLED(EEPROM_SETTINGS)
980
 #if ENABLED(EEPROM_SETTINGS)
1497
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1497
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1498
 //#define SF_ARC_FIX
1498
 //#define SF_ARC_FIX
1499
 
1499
 
1500
-// Support for the BariCUDA Paste Extruder.
1500
+// Support for the BariCUDA Paste Extruder
1501
 //#define BARICUDA
1501
 //#define BARICUDA
1502
 
1502
 
1503
-//define BlinkM/CyzRgb Support
1503
+// Support for BlinkM/CyzRgb
1504
 //#define BLINKM
1504
 //#define BLINKM
1505
 
1505
 
1506
-//define PCA9632 PWM LED driver Support
1506
+// Support for PCA9632 PWM LED driver
1507
 //#define PCA9632
1507
 //#define PCA9632
1508
 
1508
 
1509
 /**
1509
 /**

+ 4
- 4
Marlin/example_configurations/adafruit/ST7565/Configuration.h Bestand weergeven

984
 // M500 - stores parameters in EEPROM
984
 // M500 - stores parameters in EEPROM
985
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
985
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
986
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
986
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
987
-//define this to enable EEPROM support
987
+// Define this to enable EEPROM support
988
 //#define EEPROM_SETTINGS
988
 //#define EEPROM_SETTINGS
989
 
989
 
990
 #if ENABLED(EEPROM_SETTINGS)
990
 #if ENABLED(EEPROM_SETTINGS)
1507
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1507
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1508
 //#define SF_ARC_FIX
1508
 //#define SF_ARC_FIX
1509
 
1509
 
1510
-// Support for the BariCUDA Paste Extruder.
1510
+// Support for the BariCUDA Paste Extruder
1511
 //#define BARICUDA
1511
 //#define BARICUDA
1512
 
1512
 
1513
-//define BlinkM/CyzRgb Support
1513
+// Support for BlinkM/CyzRgb
1514
 //#define BLINKM
1514
 //#define BLINKM
1515
 
1515
 
1516
-//define PCA9632 PWM LED driver Support
1516
+// Support for PCA9632 PWM LED driver
1517
 //#define PCA9632
1517
 //#define PCA9632
1518
 
1518
 
1519
 /**
1519
 /**

+ 4
- 4
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h Bestand weergeven

1104
 // M500 - stores parameters in EEPROM
1104
 // M500 - stores parameters in EEPROM
1105
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1105
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1106
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1106
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1107
-//define this to enable EEPROM support
1107
+// Define this to enable EEPROM support
1108
 #define EEPROM_SETTINGS
1108
 #define EEPROM_SETTINGS
1109
 
1109
 
1110
 #if ENABLED(EEPROM_SETTINGS)
1110
 #if ENABLED(EEPROM_SETTINGS)
1628
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1628
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1629
 //#define SF_ARC_FIX
1629
 //#define SF_ARC_FIX
1630
 
1630
 
1631
-// Support for the BariCUDA Paste Extruder.
1631
+// Support for the BariCUDA Paste Extruder
1632
 //#define BARICUDA
1632
 //#define BARICUDA
1633
 
1633
 
1634
-//define BlinkM/CyzRgb Support
1634
+// Support for BlinkM/CyzRgb
1635
 //#define BLINKM
1635
 //#define BLINKM
1636
 
1636
 
1637
-//define PCA9632 PWM LED driver Support
1637
+// Support for PCA9632 PWM LED driver
1638
 //#define PCA9632
1638
 //#define PCA9632
1639
 
1639
 
1640
 /**
1640
 /**

+ 4
- 4
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h Bestand weergeven

1106
 // M500 - stores parameters in EEPROM
1106
 // M500 - stores parameters in EEPROM
1107
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1107
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1108
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1108
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1109
-//define this to enable EEPROM support
1109
+// Define this to enable EEPROM support
1110
 #define EEPROM_SETTINGS
1110
 #define EEPROM_SETTINGS
1111
 
1111
 
1112
 #if ENABLED(EEPROM_SETTINGS)
1112
 #if ENABLED(EEPROM_SETTINGS)
1629
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1629
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1630
 //#define SF_ARC_FIX
1630
 //#define SF_ARC_FIX
1631
 
1631
 
1632
-// Support for the BariCUDA Paste Extruder.
1632
+// Support for the BariCUDA Paste Extruder
1633
 //#define BARICUDA
1633
 //#define BARICUDA
1634
 
1634
 
1635
-//define BlinkM/CyzRgb Support
1635
+// Support for BlinkM/CyzRgb
1636
 //#define BLINKM
1636
 //#define BLINKM
1637
 
1637
 
1638
-//define PCA9632 PWM LED driver Support
1638
+// Support for PCA9632 PWM LED driver
1639
 //#define PCA9632
1639
 //#define PCA9632
1640
 
1640
 
1641
 /**
1641
 /**

+ 4
- 4
Marlin/example_configurations/delta/generic/Configuration.h Bestand weergeven

1095
 // M500 - stores parameters in EEPROM
1095
 // M500 - stores parameters in EEPROM
1096
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1096
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1097
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1097
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1098
-//define this to enable EEPROM support
1098
+// Define this to enable EEPROM support
1099
 //#define EEPROM_SETTINGS
1099
 //#define EEPROM_SETTINGS
1100
 
1100
 
1101
 #if ENABLED(EEPROM_SETTINGS)
1101
 #if ENABLED(EEPROM_SETTINGS)
1618
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1618
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1619
 //#define SF_ARC_FIX
1619
 //#define SF_ARC_FIX
1620
 
1620
 
1621
-// Support for the BariCUDA Paste Extruder.
1621
+// Support for the BariCUDA Paste Extruder
1622
 //#define BARICUDA
1622
 //#define BARICUDA
1623
 
1623
 
1624
-//define BlinkM/CyzRgb Support
1624
+// Support for BlinkM/CyzRgb
1625
 //#define BLINKM
1625
 //#define BLINKM
1626
 
1626
 
1627
-//define PCA9632 PWM LED driver Support
1627
+// Support for PCA9632 PWM LED driver
1628
 //#define PCA9632
1628
 //#define PCA9632
1629
 
1629
 
1630
 /**
1630
 /**

+ 4
- 4
Marlin/example_configurations/delta/kossel_mini/Configuration.h Bestand weergeven

1098
 // M500 - stores parameters in EEPROM
1098
 // M500 - stores parameters in EEPROM
1099
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1099
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1100
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1100
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1101
-//define this to enable EEPROM support
1101
+// Define this to enable EEPROM support
1102
 //#define EEPROM_SETTINGS
1102
 //#define EEPROM_SETTINGS
1103
 
1103
 
1104
 #if ENABLED(EEPROM_SETTINGS)
1104
 #if ENABLED(EEPROM_SETTINGS)
1621
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1621
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1622
 //#define SF_ARC_FIX
1622
 //#define SF_ARC_FIX
1623
 
1623
 
1624
-// Support for the BariCUDA Paste Extruder.
1624
+// Support for the BariCUDA Paste Extruder
1625
 //#define BARICUDA
1625
 //#define BARICUDA
1626
 
1626
 
1627
-//define BlinkM/CyzRgb Support
1627
+// Support for BlinkM/CyzRgb
1628
 //#define BLINKM
1628
 //#define BLINKM
1629
 
1629
 
1630
-//define PCA9632 PWM LED driver Support
1630
+// Support for PCA9632 PWM LED driver
1631
 //#define PCA9632
1631
 //#define PCA9632
1632
 
1632
 
1633
 /**
1633
 /**

+ 4
- 4
Marlin/example_configurations/delta/kossel_pro/Configuration.h Bestand weergeven

1103
 // M500 - stores parameters in EEPROM
1103
 // M500 - stores parameters in EEPROM
1104
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1104
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1105
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1105
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1106
-//define this to enable EEPROM support
1106
+// Define this to enable EEPROM support
1107
 //#define EEPROM_SETTINGS
1107
 //#define EEPROM_SETTINGS
1108
 
1108
 
1109
 #if ENABLED(EEPROM_SETTINGS)
1109
 #if ENABLED(EEPROM_SETTINGS)
1626
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1626
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1627
 //#define SF_ARC_FIX
1627
 //#define SF_ARC_FIX
1628
 
1628
 
1629
-// Support for the BariCUDA Paste Extruder.
1629
+// Support for the BariCUDA Paste Extruder
1630
 //#define BARICUDA
1630
 //#define BARICUDA
1631
 
1631
 
1632
-//define BlinkM/CyzRgb Support
1632
+// Support for BlinkM/CyzRgb
1633
 //#define BLINKM
1633
 //#define BLINKM
1634
 
1634
 
1635
-//define PCA9632 PWM LED driver Support
1635
+// Support for PCA9632 PWM LED driver
1636
 //#define PCA9632
1636
 //#define PCA9632
1637
 
1637
 
1638
 /**
1638
 /**

+ 4
- 4
Marlin/example_configurations/delta/kossel_xl/Configuration.h Bestand weergeven

1161
 // M500 - stores parameters in EEPROM
1161
 // M500 - stores parameters in EEPROM
1162
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1162
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1163
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1163
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1164
-//define this to enable EEPROM support
1164
+// Define this to enable EEPROM support
1165
 #define EEPROM_SETTINGS
1165
 #define EEPROM_SETTINGS
1166
 
1166
 
1167
 #if ENABLED(EEPROM_SETTINGS)
1167
 #if ENABLED(EEPROM_SETTINGS)
1684
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1684
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1685
 //#define SF_ARC_FIX
1685
 //#define SF_ARC_FIX
1686
 
1686
 
1687
-// Support for the BariCUDA Paste Extruder.
1687
+// Support for the BariCUDA Paste Extruder
1688
 //#define BARICUDA
1688
 //#define BARICUDA
1689
 
1689
 
1690
-//define BlinkM/CyzRgb Support
1690
+// Support for BlinkM/CyzRgb
1691
 //#define BLINKM
1691
 //#define BLINKM
1692
 
1692
 
1693
-//define PCA9632 PWM LED driver Support
1693
+// Support for PCA9632 PWM LED driver
1694
 //#define PCA9632
1694
 //#define PCA9632
1695
 
1695
 
1696
 /**
1696
 /**

+ 4
- 4
Marlin/example_configurations/gCreate_gMax1.5+/Configuration.h Bestand weergeven

1000
 // M500 - stores parameters in EEPROM
1000
 // M500 - stores parameters in EEPROM
1001
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1001
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
1002
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1002
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
1003
-//define this to enable EEPROM support
1003
+// Define this to enable EEPROM support
1004
 #define EEPROM_SETTINGS
1004
 #define EEPROM_SETTINGS
1005
 
1005
 
1006
 #if ENABLED(EEPROM_SETTINGS)
1006
 #if ENABLED(EEPROM_SETTINGS)
1523
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1523
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1524
 //#define SF_ARC_FIX
1524
 //#define SF_ARC_FIX
1525
 
1525
 
1526
-// Support for the BariCUDA Paste Extruder.
1526
+// Support for the BariCUDA Paste Extruder
1527
 //#define BARICUDA
1527
 //#define BARICUDA
1528
 
1528
 
1529
-//define BlinkM/CyzRgb Support
1529
+// Support for BlinkM/CyzRgb
1530
 //#define BLINKM
1530
 //#define BLINKM
1531
 
1531
 
1532
-//define PCA9632 PWM LED driver Support
1532
+// Support for PCA9632 PWM LED driver
1533
 //#define PCA9632
1533
 //#define PCA9632
1534
 
1534
 
1535
 /**
1535
 /**

+ 4
- 4
Marlin/example_configurations/makibox/Configuration.h Bestand weergeven

987
 // M500 - stores parameters in EEPROM
987
 // M500 - stores parameters in EEPROM
988
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
988
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
989
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
989
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
990
-//define this to enable EEPROM support
990
+// Define this to enable EEPROM support
991
 #define EEPROM_SETTINGS
991
 #define EEPROM_SETTINGS
992
 
992
 
993
 #if ENABLED(EEPROM_SETTINGS)
993
 #if ENABLED(EEPROM_SETTINGS)
1510
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1510
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1511
 //#define SF_ARC_FIX
1511
 //#define SF_ARC_FIX
1512
 
1512
 
1513
-// Support for the BariCUDA Paste Extruder.
1513
+// Support for the BariCUDA Paste Extruder
1514
 //#define BARICUDA
1514
 //#define BARICUDA
1515
 
1515
 
1516
-//define BlinkM/CyzRgb Support
1516
+// Support for BlinkM/CyzRgb
1517
 //#define BLINKM
1517
 //#define BLINKM
1518
 
1518
 
1519
-//define PCA9632 PWM LED driver Support
1519
+// Support for PCA9632 PWM LED driver
1520
 //#define PCA9632
1520
 //#define PCA9632
1521
 
1521
 
1522
 /**
1522
 /**

+ 4
- 4
Marlin/example_configurations/tvrrug/Round2/Configuration.h Bestand weergeven

979
 // M500 - stores parameters in EEPROM
979
 // M500 - stores parameters in EEPROM
980
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
980
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
981
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
981
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
982
-//define this to enable EEPROM support
982
+// Define this to enable EEPROM support
983
 //#define EEPROM_SETTINGS
983
 //#define EEPROM_SETTINGS
984
 
984
 
985
 #if ENABLED(EEPROM_SETTINGS)
985
 #if ENABLED(EEPROM_SETTINGS)
1502
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1502
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1503
 //#define SF_ARC_FIX
1503
 //#define SF_ARC_FIX
1504
 
1504
 
1505
-// Support for the BariCUDA Paste Extruder.
1505
+// Support for the BariCUDA Paste Extruder
1506
 //#define BARICUDA
1506
 //#define BARICUDA
1507
 
1507
 
1508
-//define BlinkM/CyzRgb Support
1508
+// Support for BlinkM/CyzRgb
1509
 //#define BLINKM
1509
 //#define BLINKM
1510
 
1510
 
1511
-//define PCA9632 PWM LED driver Support
1511
+// Support for PCA9632 PWM LED driver
1512
 //#define PCA9632
1512
 //#define PCA9632
1513
 
1513
 
1514
 /**
1514
 /**

+ 4
- 4
Marlin/example_configurations/wt150/Configuration.h Bestand weergeven

990
 // M500 - stores parameters in EEPROM
990
 // M500 - stores parameters in EEPROM
991
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
991
 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).
992
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
992
 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
993
-//define this to enable EEPROM support
993
+// Define this to enable EEPROM support
994
 #define EEPROM_SETTINGS
994
 #define EEPROM_SETTINGS
995
 
995
 
996
 #if ENABLED(EEPROM_SETTINGS)
996
 #if ENABLED(EEPROM_SETTINGS)
1513
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1513
 // SkeinForge sends the wrong arc g-codes when using Arc Point as fillet procedure
1514
 //#define SF_ARC_FIX
1514
 //#define SF_ARC_FIX
1515
 
1515
 
1516
-// Support for the BariCUDA Paste Extruder.
1516
+// Support for the BariCUDA Paste Extruder
1517
 //#define BARICUDA
1517
 //#define BARICUDA
1518
 
1518
 
1519
-//define BlinkM/CyzRgb Support
1519
+// Support for BlinkM/CyzRgb
1520
 //#define BLINKM
1520
 //#define BLINKM
1521
 
1521
 
1522
-//define PCA9632 PWM LED driver Support
1522
+// Support for PCA9632 PWM LED driver
1523
 //#define PCA9632
1523
 //#define PCA9632
1524
 
1524
 
1525
 /**
1525
 /**

Laden…
Annuleren
Opslaan