Skip to content

Commit 20e6b63

Browse files
committed
📝 Config section reorganization
1 parent ca4248b commit 20e6b63

File tree

1 file changed

+26
-20
lines changed

1 file changed

+26
-20
lines changed

Marlin/Configuration.h

+26-20
Original file line numberDiff line numberDiff line change
@@ -1723,6 +1723,8 @@
17231723
#define PROBING_BED_TEMP 50
17241724
#endif
17251725

1726+
// @section stepper drivers
1727+
17261728
// For Inverting Stepper Enable Pins (Active Low) use 0, Non Inverting (Active High) use 1
17271729
// :{ 0:'Low', 1:'High' }
17281730
#define X_ENABLE_ON 0
@@ -1896,6 +1898,8 @@
18961898
#endif
18971899

18981900
/**
1901+
* @section filament runout sensors
1902+
*
18991903
* Filament Runout Sensors
19001904
* Mechanical or opto endstops are used to check for the presence of filament.
19011905
*
@@ -2418,9 +2422,9 @@
24182422
#define PREHEAT_2_TEMP_CHAMBER 35
24192423
#define PREHEAT_2_FAN_SPEED 0 // Value from 0 to 255
24202424

2421-
// @section motion
2422-
24232425
/**
2426+
* @section nozzle park
2427+
*
24242428
* Nozzle Park
24252429
*
24262430
* Park the nozzle at the given XYZ position on idle or G27.
@@ -2443,6 +2447,8 @@
24432447
#endif
24442448

24452449
/**
2450+
* @section nozzle clean
2451+
*
24462452
* Clean Nozzle Feature
24472453
*
24482454
* Adds the G12 command to perform a nozzle cleaning process.
@@ -2603,9 +2609,24 @@
26032609
//#include "Configuration_Secure.h" // External file with PASSWORD_DEFAULT_VALUE
26042610
#endif
26052611

2606-
//=============================================================================
2607-
//============================= LCD and SD support ============================
2608-
//=============================================================================
2612+
// @section media
2613+
2614+
/**
2615+
* SD CARD
2616+
*
2617+
* SD Card support is disabled by default. If your controller has an SD slot,
2618+
* you must uncomment the following option or it won't work.
2619+
*/
2620+
//#define SDSUPPORT
2621+
2622+
/**
2623+
* SD CARD: ENABLE CRC
2624+
*
2625+
* Use CRC checks and retries on the SD communication.
2626+
*/
2627+
#if ENABLED(SDSUPPORT)
2628+
//#define SD_CHECK_AND_RETRY
2629+
#endif
26092630

26102631
// @section interface
26112632

@@ -2652,21 +2673,6 @@
26522673
*/
26532674
#define LCD_INFO_SCREEN_STYLE 0
26542675

2655-
/**
2656-
* SD CARD
2657-
*
2658-
* SD Card support is disabled by default. If your controller has an SD slot,
2659-
* you must uncomment the following option or it won't work.
2660-
*/
2661-
//#define SDSUPPORT
2662-
2663-
/**
2664-
* SD CARD: ENABLE CRC
2665-
*
2666-
* Use CRC checks and retries on the SD communication.
2667-
*/
2668-
//#define SD_CHECK_AND_RETRY
2669-
26702676
/**
26712677
* LCD Menu Items
26722678
*

0 commit comments

Comments
 (0)