|
@@ -1666,33 +1666,33 @@
|
1666
|
1666
|
// Probe temperature calibration generates a table of values starting at PTC_SAMPLE_START
|
1667
|
1667
|
// (e.g. 30), in steps of PTC_SAMPLE_RES (e.g. 5) with PTC_SAMPLE_COUNT (e.g. 10) samples.
|
1668
|
1668
|
|
1669
|
|
- // #define PTC_SAMPLE_START 30.0f
|
1670
|
|
- // #define PTC_SAMPLE_RES 5.0f
|
1671
|
|
- // #define PTC_SAMPLE_COUNT 10U
|
|
1669
|
+ //#define PTC_SAMPLE_START 30.0f
|
|
1670
|
+ //#define PTC_SAMPLE_RES 5.0f
|
|
1671
|
+ //#define PTC_SAMPLE_COUNT 10U
|
1672
|
1672
|
|
1673
|
1673
|
// Bed temperature calibration builds a similar table.
|
1674
|
1674
|
|
1675
|
|
- // #define BTC_SAMPLE_START 60.0f
|
1676
|
|
- // #define BTC_SAMPLE_RES 5.0f
|
1677
|
|
- // #define BTC_SAMPLE_COUNT 10U
|
|
1675
|
+ //#define BTC_SAMPLE_START 60.0f
|
|
1676
|
+ //#define BTC_SAMPLE_RES 5.0f
|
|
1677
|
+ //#define BTC_SAMPLE_COUNT 10U
|
1678
|
1678
|
|
1679
|
1679
|
// The temperature the probe should be at while taking measurements during bed temperature
|
1680
|
1680
|
// calibration.
|
1681
|
|
- // #define BTC_PROBE_TEMP 30.0f
|
|
1681
|
+ //#define BTC_PROBE_TEMP 30.0f
|
1682
|
1682
|
|
1683
|
1683
|
// Height above Z=0.0f to raise the nozzle. Lowering this can help the probe to heat faster.
|
1684
|
1684
|
// Note: the Z=0.0f offset is determined by the probe offset which can be set using M851.
|
1685
|
|
- // #define PTC_PROBE_HEATING_OFFSET 0.5f
|
|
1685
|
+ //#define PTC_PROBE_HEATING_OFFSET 0.5f
|
1686
|
1686
|
|
1687
|
1687
|
// Height to raise the Z-probe between heating and taking the next measurement. Some probes
|
1688
|
1688
|
// may fail to untrigger if they have been triggered for a long time, which can be solved by
|
1689
|
1689
|
// increasing the height the probe is raised to.
|
1690
|
|
- // #define PTC_PROBE_RAISE 15U
|
|
1690
|
+ //#define PTC_PROBE_RAISE 15U
|
1691
|
1691
|
|
1692
|
1692
|
// If the probe is outside of the defined range, use linear extrapolation using the closest
|
1693
|
1693
|
// point and the PTC_LINEAR_EXTRAPOLATION'th next point. E.g. if set to 4 it will use data[0]
|
1694
|
1694
|
// and data[4] to perform linear extrapolation for values below PTC_SAMPLE_START.
|
1695
|
|
- // #define PTC_LINEAR_EXTRAPOLATION 4
|
|
1695
|
+ //#define PTC_LINEAR_EXTRAPOLATION 4
|
1696
|
1696
|
#endif
|
1697
|
1697
|
#endif
|
1698
|
1698
|
|