瀏覽代碼

Merge pull request #2229 from AnHardt/position-out-of-range

Fix out_of_range_error()
AnHardt 9 年之前
父節點
當前提交
c3fe6e61ae
共有 1 個檔案被更改,包括 6 行新增4 行删除
  1. 6
    4
      Marlin/Marlin_main.cpp

+ 6
- 4
Marlin/Marlin_main.cpp 查看文件

@@ -2437,10 +2437,12 @@ inline void gcode_G28() {
2437 2437
 
2438 2438
 #elif defined(ENABLE_AUTO_BED_LEVELING)
2439 2439
 
2440
-  void out_of_range_error(const char *edge) {
2441
-    char msg[40];
2442
-    sprintf_P(msg, PSTR("?Probe %s position out of range.\n"), edge);
2443
-    SERIAL_PROTOCOL(msg);
2440
+  void out_of_range_error(const char *p_edge) {
2441
+    char edge[10];
2442
+    strncpy_P(edge, p_edge, 10);
2443
+    SERIAL_PROTOCOLPGM("?Probe ");
2444
+    SERIAL_PROTOCOL(edge);
2445
+    SERIAL_PROTOCOLLNPGM(" position out of range.");
2444 2446
   }
2445 2447
 
2446 2448
   /**

Loading…
取消
儲存