|
3836 | 3836 | */
|
3837 | 3837 | //#define CNC_COORDINATE_SYSTEMS
|
3838 | 3838 |
|
3839 |
| -// @section reporting |
3840 |
| - |
3841 |
| -/** |
3842 |
| - * Auto-report fan speed with M123 S<seconds> |
3843 |
| - * Requires fans with tachometer pins |
3844 |
| - */ |
3845 |
| -//#define AUTO_REPORT_FANS |
3846 |
| - |
3847 |
| -/** |
3848 |
| - * Auto-report temperatures with M155 S<seconds> |
3849 |
| - */ |
3850 |
| -#define AUTO_REPORT_TEMPERATURES |
3851 |
| -#if ENABLED(AUTO_REPORT_TEMPERATURES) && TEMP_SENSOR_REDUNDANT |
3852 |
| - //#define AUTO_REPORT_REDUNDANT // Include the "R" sensor in the auto-report |
3853 |
| -#endif |
3854 |
| - |
3855 |
| -/** |
3856 |
| - * Auto-report position with M154 S<seconds> |
3857 |
| - */ |
3858 |
| -//#define AUTO_REPORT_POSITION |
3859 |
| -#if ENABLED(AUTO_REPORT_POSITION) |
3860 |
| - //#define AUTO_REPORT_REAL_POSITION // Auto-report the real position |
3861 |
| -#endif |
3862 |
| - |
3863 |
| -/** |
3864 |
| - * Include capabilities in M115 output |
3865 |
| - */ |
3866 |
| -#define EXTENDED_CAPABILITIES_REPORT |
3867 |
| -#if ENABLED(EXTENDED_CAPABILITIES_REPORT) |
3868 |
| - //#define M115_GEOMETRY_REPORT |
3869 |
| -#endif |
3870 |
| - |
3871 | 3839 | // @section security
|
3872 | 3840 |
|
3873 | 3841 | /**
|
|
3910 | 3878 |
|
3911 | 3879 | // @section reporting
|
3912 | 3880 |
|
3913 |
| -// Extra options for the M114 "Current Position" report |
| 3881 | +/** |
| 3882 | + * Extra options for the M114 "Current Position" report |
| 3883 | + */ |
3914 | 3884 | //#define M114_DETAIL // Use 'M114` for details to check planner calculations
|
3915 | 3885 | //#define M114_REALTIME // Real current position based on forward kinematics
|
3916 | 3886 | //#define M114_LEGACY // M114 used to synchronize on every call. Enable if needed.
|
3917 | 3887 |
|
| 3888 | + |
| 3889 | +/** |
| 3890 | + * Auto-report fan speed with M123 S<seconds> |
| 3891 | + * Requires fans with tachometer pins |
| 3892 | + */ |
| 3893 | +//#define AUTO_REPORT_FANS |
| 3894 | + |
3918 | 3895 | //#define REPORT_FAN_CHANGE // Report the new fan speed when changed by M106 (and others)
|
3919 | 3896 |
|
| 3897 | +/** |
| 3898 | + * Auto-report temperatures with M155 S<seconds> |
| 3899 | + */ |
| 3900 | +#define AUTO_REPORT_TEMPERATURES |
| 3901 | +#if ENABLED(AUTO_REPORT_TEMPERATURES) && TEMP_SENSOR_REDUNDANT |
| 3902 | + //#define AUTO_REPORT_REDUNDANT // Include the "R" sensor in the auto-report |
| 3903 | +#endif |
| 3904 | + |
| 3905 | +/** |
| 3906 | + * Auto-report position with M154 S<seconds> |
| 3907 | + */ |
| 3908 | +//#define AUTO_REPORT_POSITION |
| 3909 | +#if ENABLED(AUTO_REPORT_POSITION) |
| 3910 | + //#define AUTO_REPORT_REAL_POSITION // Auto-report the real position |
| 3911 | +#endif |
| 3912 | + |
| 3913 | +/** |
| 3914 | + * M115 - Report capabilites. Disable to save ~1150 bytes of flash. |
| 3915 | + * Some hosts (and serial TFT displays) rely on this feature. |
| 3916 | + */ |
| 3917 | +#define CAPABILITIES_REPORT |
| 3918 | +#if ENABLED(CAPABILITIES_REPORT) |
| 3919 | + // Include capabilities in M115 output |
| 3920 | + #define EXTENDED_CAPABILITIES_REPORT |
| 3921 | + #if ENABLED(EXTENDED_CAPABILITIES_REPORT) |
| 3922 | + //#define M115_GEOMETRY_REPORT |
| 3923 | + #endif |
| 3924 | +#endif |
| 3925 | + |
3920 | 3926 | // @section gcode
|
3921 | 3927 |
|
3922 | 3928 | /**
|
|
3928 | 3934 | //#define GCODE_QUOTED_STRINGS // Support for quoted string parameters
|
3929 | 3935 | #endif
|
3930 | 3936 |
|
3931 |
| -// Support for MeatPack G-code compression (https://github.com/scottmudge/OctoPrint-MeatPack) |
| 3937 | +/** |
| 3938 | + * Support for MeatPack G-code compression (https://github.com/scottmudge/OctoPrint-MeatPack) |
| 3939 | + */ |
3932 | 3940 | //#define MEATPACK_ON_SERIAL_PORT_1
|
3933 | 3941 | //#define MEATPACK_ON_SERIAL_PORT_2
|
3934 | 3942 |
|
|
3942 | 3950 | */
|
3943 | 3951 | #define DEBUG_FLAGS_GCODE
|
3944 | 3952 |
|
3945 |
| -/** |
3946 |
| - * M115 - Report capabilites. Disable to save ~1150 bytes of flash. |
3947 |
| - * Some hosts (and serial TFT displays) rely on this feature. |
3948 |
| - */ |
3949 |
| -#define REPORT_CAPABILITIES_GCODE |
3950 |
| - |
3951 | 3953 | /**
|
3952 | 3954 | * Enable this option for a leaner build of Marlin that removes
|
3953 | 3955 | * workspace offsets to slightly optimize performance.
|
|
3975 | 3977 | //#define VARIABLE_G0_FEEDRATE // The G0 feedrate is set by F in G0 motion mode
|
3976 | 3978 | #endif
|
3977 | 3979 |
|
3978 |
| -// @section gcode |
3979 |
| - |
3980 | 3980 | /**
|
3981 | 3981 | * Startup commands
|
3982 | 3982 | *
|
|
0 commit comments