|
@@ -631,7 +631,7 @@ class Temperature {
|
631
|
631
|
//inline so that there is no performance decrease.
|
632
|
632
|
//deg=degreeCelsius
|
633
|
633
|
|
634
|
|
- FORCE_INLINE static float degHotend(const uint8_t E_NAME) {
|
|
634
|
+ FORCE_INLINE static celsius_t degHotend(const uint8_t E_NAME) {
|
635
|
635
|
return TERN0(HAS_HOTEND, temp_hotend[HOTEND_INDEX].celsius);
|
636
|
636
|
}
|
637
|
637
|
|
|
@@ -736,7 +736,7 @@ class Temperature {
|
736
|
736
|
#if ENABLED(SHOW_TEMP_ADC_VALUES)
|
737
|
737
|
FORCE_INLINE static int16_t rawProbeTemp() { return temp_probe.raw; }
|
738
|
738
|
#endif
|
739
|
|
- FORCE_INLINE static float degProbe() { return temp_probe.celsius; }
|
|
739
|
+ FORCE_INLINE static celsius_t degProbe() { return temp_probe.celsius; }
|
740
|
740
|
FORCE_INLINE static bool isProbeBelowTemp(const_float_t target_temp) { return temp_probe.celsius < target_temp; }
|
741
|
741
|
FORCE_INLINE static bool isProbeAboveTemp(const_float_t target_temp) { return temp_probe.celsius > target_temp; }
|
742
|
742
|
static bool wait_for_probe(const_float_t target_temp, bool no_wait_for_cooling=true);
|
|
@@ -752,7 +752,7 @@ class Temperature {
|
752
|
752
|
#if ENABLED(SHOW_TEMP_ADC_VALUES)
|
753
|
753
|
FORCE_INLINE static int16_t rawChamberTemp() { return temp_chamber.raw; }
|
754
|
754
|
#endif
|
755
|
|
- FORCE_INLINE static float degChamber() { return temp_chamber.celsius; }
|
|
755
|
+ FORCE_INLINE static celsius_t degChamber() { return temp_chamber.celsius; }
|
756
|
756
|
#if HAS_HEATED_CHAMBER
|
757
|
757
|
FORCE_INLINE static celsius_t degTargetChamber() { return temp_chamber.target; }
|
758
|
758
|
FORCE_INLINE static bool isHeatingChamber() { return temp_chamber.target > temp_chamber.celsius; }
|
|
@@ -778,7 +778,7 @@ class Temperature {
|
778
|
778
|
#if ENABLED(SHOW_TEMP_ADC_VALUES)
|
779
|
779
|
FORCE_INLINE static int16_t rawCoolerTemp() { return temp_cooler.raw; }
|
780
|
780
|
#endif
|
781
|
|
- FORCE_INLINE static float degCooler() { return temp_cooler.celsius; }
|
|
781
|
+ FORCE_INLINE static celsius_t degCooler() { return temp_cooler.celsius; }
|
782
|
782
|
#if HAS_COOLER
|
783
|
783
|
FORCE_INLINE static celsius_t degTargetCooler() { return temp_cooler.target; }
|
784
|
784
|
FORCE_INLINE static bool isLaserHeating() { return temp_cooler.target > temp_cooler.celsius; }
|