ソースを参照

Bring configs into parity with 2.0.x

Scott Lahteine 7年前
コミット
ae256576e1
30個のファイルの変更57行の追加36行の削除
  1. 5
    7
      Marlin/SanityCheck.h
  2. 1
    1
      Marlin/example_configurations/AlephObjects/TAZ4/Configuration_adv.h
  3. 1
    1
      Marlin/example_configurations/Anet/A6/Configuration_adv.h
  4. 1
    1
      Marlin/example_configurations/Anet/A8/Configuration_adv.h
  5. 1
    1
      Marlin/example_configurations/BQ/Hephestos/Configuration_adv.h
  6. 1
    1
      Marlin/example_configurations/BQ/Hephestos_2/Configuration_adv.h
  7. 1
    1
      Marlin/example_configurations/BQ/WITBOX/Configuration_adv.h
  8. 1
    1
      Marlin/example_configurations/Cartesio/Configuration_adv.h
  9. 23
    1
      Marlin/example_configurations/Creality/CR-10/Configuration_adv.h
  10. 1
    1
      Marlin/example_configurations/Felix/Configuration_adv.h
  11. 1
    1
      Marlin/example_configurations/Folger Tech/i3-2020/Configuration_adv.h
  12. 1
    1
      Marlin/example_configurations/Infitary/i3-M508/Configuration_adv.h
  13. 1
    1
      Marlin/example_configurations/Malyan/M150/Configuration_adv.h
  14. 1
    1
      Marlin/example_configurations/RigidBot/Configuration_adv.h
  15. 1
    1
      Marlin/example_configurations/SCARA/Configuration_adv.h
  16. 2
    1
      Marlin/example_configurations/Sanguinololu/Configuration.h
  17. 1
    1
      Marlin/example_configurations/Sanguinololu/Configuration_adv.h
  18. 1
    1
      Marlin/example_configurations/TinyBoy2/Configuration_adv.h
  19. 1
    1
      Marlin/example_configurations/Velleman/K8200/Configuration_adv.h
  20. 1
    1
      Marlin/example_configurations/Velleman/K8400/Configuration_adv.h
  21. 1
    1
      Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration_adv.h
  22. 1
    1
      Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration_adv.h
  23. 1
    1
      Marlin/example_configurations/delta/generic/Configuration_adv.h
  24. 1
    1
      Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h
  25. 1
    1
      Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h
  26. 1
    1
      Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h
  27. 1
    1
      Marlin/example_configurations/gCreate/gMax1.5+/Configuration_adv.h
  28. 1
    1
      Marlin/example_configurations/makibox/Configuration_adv.h
  29. 1
    1
      Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h
  30. 1
    1
      Marlin/example_configurations/wt150/Configuration_adv.h

+ 5
- 7
Marlin/SanityCheck.h ファイルの表示

301
     #error "BABYSTEPPING is not implemented for SCARA yet."
301
     #error "BABYSTEPPING is not implemented for SCARA yet."
302
   #elif ENABLED(DELTA) && ENABLED(BABYSTEP_XY)
302
   #elif ENABLED(DELTA) && ENABLED(BABYSTEP_XY)
303
     #error "BABYSTEPPING only implemented for Z axis on deltabots."
303
     #error "BABYSTEPPING only implemented for Z axis on deltabots."
304
-  #elif ENABLED(BABYSTEP_ZPROBE_OFFSET) &&  ENABLED(MESH_BED_LEVELING)
304
+  #elif ENABLED(BABYSTEP_ZPROBE_OFFSET) && ENABLED(MESH_BED_LEVELING)
305
     #error "MESH_BED_LEVELING and BABYSTEP_ZPROBE_OFFSET is not a valid combination"
305
     #error "MESH_BED_LEVELING and BABYSTEP_ZPROBE_OFFSET is not a valid combination"
306
   #elif ENABLED(BABYSTEP_ZPROBE_OFFSET) && !HAS_BED_PROBE
306
   #elif ENABLED(BABYSTEP_ZPROBE_OFFSET) && !HAS_BED_PROBE
307
     #error "BABYSTEP_ZPROBE_OFFSET requires a probe."
307
     #error "BABYSTEP_ZPROBE_OFFSET requires a probe."
647
   /**
647
   /**
648
    * Require some kind of probe for bed leveling and probe testing
648
    * Require some kind of probe for bed leveling and probe testing
649
    */
649
    */
650
-  #if HAS_ABL
651
-    #if ENABLED(AUTO_BED_LEVELING_UBL)
652
-      #error "Unified Bed Leveling requires a probe: FIX_MOUNTED_PROBE, BLTOUCH, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or Z Servo."
653
-    #else
654
-      #error "Auto Bed Leveling requires one of these: PROBE_MANUALLY, FIX_MOUNTED_PROBE, BLTOUCH, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or a Z Servo."
655
-    #endif
650
+  #if ENABLED(AUTO_BED_LEVELING_UBL)
651
+    #error "Unified Bed Leveling requires a probe: FIX_MOUNTED_PROBE, BLTOUCH, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or Z Servo."
652
+  #elif HAS_ABL
653
+    #error "Auto Bed Leveling requires one of these: PROBE_MANUALLY, FIX_MOUNTED_PROBE, BLTOUCH, SOLENOID_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, or a Z Servo."
656
   #endif
654
   #endif
657
 
655
 
658
 #endif
656
 #endif

+ 1
- 1
Marlin/example_configurations/AlephObjects/TAZ4/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/Anet/A6/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/Anet/A8/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/BQ/Hephestos/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/BQ/Hephestos_2/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/BQ/WITBOX/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/Cartesio/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 23
- 1
Marlin/example_configurations/Creality/CR-10/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
753
 // :[0, 2, 4, 8, 16, 32, 64, 128, 256]
753
 // :[0, 2, 4, 8, 16, 32, 64, 128, 256]
754
 #define TX_BUFFER_SIZE 0
754
 #define TX_BUFFER_SIZE 0
755
 
755
 
756
+// Host Receive Buffer Size
757
+// Without XON/XOFF flow control (see SERIAL_XON_XOFF below) 32 bytes should be enough.
758
+// To use flow control, set this buffer size to at least 1024 bytes.
759
+// :[0, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048]
760
+//#define RX_BUFFER_SIZE 1024
761
+
762
+#if RX_BUFFER_SIZE >= 1024
763
+  // Enable to have the controller send XON/XOFF control characters to
764
+  // the host to signal the RX buffer is becoming full.
765
+  //#define SERIAL_XON_XOFF
766
+#endif
767
+
768
+#if ENABLED(SDSUPPORT)
769
+  // Enable this option to collect and display the maximum
770
+  // RX queue usage after transferring a file to SD.
771
+  //#define SERIAL_STATS_MAX_RX_QUEUED
772
+
773
+  // Enable this option to collect and display the number
774
+  // of dropped bytes after a file transfer to SD.
775
+  //#define SERIAL_STATS_DROPPED_RX
776
+#endif
777
+
756
 // Enable an emergency-command parser to intercept certain commands as they
778
 // Enable an emergency-command parser to intercept certain commands as they
757
 // enter the serial receive buffer, so they cannot be blocked.
779
 // enter the serial receive buffer, so they cannot be blocked.
758
 // Currently handles M108, M112, M410
780
 // Currently handles M108, M112, M410

+ 1
- 1
Marlin/example_configurations/Felix/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/Folger Tech/i3-2020/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/Infitary/i3-M508/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/Malyan/M150/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/RigidBot/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 8
745
 #define BUFSIZE 8
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/SCARA/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 2
- 1
Marlin/example_configurations/Sanguinololu/Configuration.h ファイルの表示

107
  *
107
  *
108
  * 250000 works in most cases, but you might try a lower speed if
108
  * 250000 works in most cases, but you might try a lower speed if
109
  * you commonly experience drop-outs during host printing.
109
  * you commonly experience drop-outs during host printing.
110
+ * You may try up to 1000000 to speed up SD file transfer.
110
  *
111
  *
111
- * :[2400, 9600, 19200, 38400, 57600, 115200, 250000]
112
+ * :[2400, 9600, 19200, 38400, 57600, 115200, 250000, 500000, 1000000]
112
  */
113
  */
113
 #define BAUDRATE 115200
114
 #define BAUDRATE 115200
114
 
115
 

+ 1
- 1
Marlin/example_configurations/Sanguinololu/Configuration_adv.h ファイルの表示

733
 #define MAX_CMD_SIZE 96
733
 #define MAX_CMD_SIZE 96
734
 #define BUFSIZE 4
734
 #define BUFSIZE 4
735
 
735
 
736
-// Transfer Buffer Size
736
+// Transmission to Host Buffer Size
737
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
737
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
738
 // To buffer a simple "ok" you need 4 bytes.
738
 // To buffer a simple "ok" you need 4 bytes.
739
 // For ADVANCED_OK (M105) you need 32 bytes.
739
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/TinyBoy2/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/Velleman/K8200/Configuration_adv.h ファイルの表示

757
 #define MAX_CMD_SIZE 96
757
 #define MAX_CMD_SIZE 96
758
 #define BUFSIZE 4
758
 #define BUFSIZE 4
759
 
759
 
760
-// Transfer Buffer Size
760
+// Transmission to Host Buffer Size
761
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
761
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
762
 // To buffer a simple "ok" you need 4 bytes.
762
 // To buffer a simple "ok" you need 4 bytes.
763
 // For ADVANCED_OK (M105) you need 32 bytes.
763
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/Velleman/K8400/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 26
745
 #define BUFSIZE 26
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration_adv.h ファイルの表示

746
 #define MAX_CMD_SIZE 96
746
 #define MAX_CMD_SIZE 96
747
 #define BUFSIZE 4
747
 #define BUFSIZE 4
748
 
748
 
749
-// Transfer Buffer Size
749
+// Transmission to Host Buffer Size
750
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
750
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
751
 // To buffer a simple "ok" you need 4 bytes.
751
 // To buffer a simple "ok" you need 4 bytes.
752
 // For ADVANCED_OK (M105) you need 32 bytes.
752
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration_adv.h ファイルの表示

746
 #define MAX_CMD_SIZE 96
746
 #define MAX_CMD_SIZE 96
747
 #define BUFSIZE 4
747
 #define BUFSIZE 4
748
 
748
 
749
-// Transfer Buffer Size
749
+// Transmission to Host Buffer Size
750
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
750
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
751
 // To buffer a simple "ok" you need 4 bytes.
751
 // To buffer a simple "ok" you need 4 bytes.
752
 // For ADVANCED_OK (M105) you need 32 bytes.
752
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/delta/generic/Configuration_adv.h ファイルの表示

746
 #define MAX_CMD_SIZE 96
746
 #define MAX_CMD_SIZE 96
747
 #define BUFSIZE 4
747
 #define BUFSIZE 4
748
 
748
 
749
-// Transfer Buffer Size
749
+// Transmission to Host Buffer Size
750
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
750
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
751
 // To buffer a simple "ok" you need 4 bytes.
751
 // To buffer a simple "ok" you need 4 bytes.
752
 // For ADVANCED_OK (M105) you need 32 bytes.
752
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h ファイルの表示

746
 #define MAX_CMD_SIZE 96
746
 #define MAX_CMD_SIZE 96
747
 #define BUFSIZE 4
747
 #define BUFSIZE 4
748
 
748
 
749
-// Transfer Buffer Size
749
+// Transmission to Host Buffer Size
750
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
750
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
751
 // To buffer a simple "ok" you need 4 bytes.
751
 // To buffer a simple "ok" you need 4 bytes.
752
 // For ADVANCED_OK (M105) you need 32 bytes.
752
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/delta/kossel_pro/Configuration_adv.h ファイルの表示

751
 #define MAX_CMD_SIZE 96
751
 #define MAX_CMD_SIZE 96
752
 #define BUFSIZE 4
752
 #define BUFSIZE 4
753
 
753
 
754
-// Transfer Buffer Size
754
+// Transmission to Host Buffer Size
755
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
755
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
756
 // To buffer a simple "ok" you need 4 bytes.
756
 // To buffer a simple "ok" you need 4 bytes.
757
 // For ADVANCED_OK (M105) you need 32 bytes.
757
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/delta/kossel_xl/Configuration_adv.h ファイルの表示

746
 #define MAX_CMD_SIZE 96
746
 #define MAX_CMD_SIZE 96
747
 #define BUFSIZE 4
747
 #define BUFSIZE 4
748
 
748
 
749
-// Transfer Buffer Size
749
+// Transmission to Host Buffer Size
750
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
750
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
751
 // To buffer a simple "ok" you need 4 bytes.
751
 // To buffer a simple "ok" you need 4 bytes.
752
 // For ADVANCED_OK (M105) you need 32 bytes.
752
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/gCreate/gMax1.5+/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/makibox/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

+ 1
- 1
Marlin/example_configurations/wt150/Configuration_adv.h ファイルの表示

744
 #define MAX_CMD_SIZE 96
744
 #define MAX_CMD_SIZE 96
745
 #define BUFSIZE 4
745
 #define BUFSIZE 4
746
 
746
 
747
-// Transfer Buffer Size
747
+// Transmission to Host Buffer Size
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
748
 // To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
749
 // To buffer a simple "ok" you need 4 bytes.
749
 // To buffer a simple "ok" you need 4 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.
750
 // For ADVANCED_OK (M105) you need 32 bytes.

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