ソースを参照

Make pid_debug_flag match declaration in M303.cpp

Get it right this time!
Roxy-3D 5年前
コミット
07c9dc4142
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更2行の追加2行の削除
  1. 2
    2
      Marlin/src/module/temperature.cpp

+ 2
- 2
Marlin/src/module/temperature.cpp ファイルの表示

@@ -823,7 +823,7 @@ void Temperature::min_temp_error(const heater_ind_t heater) {
823 823
 
824 824
 #if HOTENDS
825 825
   #if ENABLED(PID_DEBUG)
826
-    extern bool PID_debug_flag;
826
+    extern bool pid_debug_flag;
827 827
   #endif
828 828
 
829 829
   float Temperature::get_pid_output_hotend(const uint8_t E_NAME) {
@@ -906,7 +906,7 @@ void Temperature::min_temp_error(const heater_ind_t heater) {
906 906
       #endif // PID_OPENLOOP
907 907
 
908 908
       #if ENABLED(PID_DEBUG)
909
-        if (ee == active_extruder && PID_debug_flag) {
909
+        if (ee == active_extruder && pid_debug_flag) {
910 910
           SERIAL_ECHO_START();
911 911
           SERIAL_ECHOPAIR(STR_PID_DEBUG, ee, STR_PID_DEBUG_INPUT, temp_hotend[ee].celsius, STR_PID_DEBUG_OUTPUT, pid_output);
912 912
           #if DISABLED(PID_OPENLOOP)

読み込み中…
キャンセル
保存