FIX:chang deteciton to detection

jira:[none]

Change-Id: I1bfe30add7fce97bd6f448124e212b96a4ea6129
(cherry picked from commit 7623c5a0222188b510b1a76eb2e6b52934e9a0eb)
This commit is contained in:
milk 2025-08-08 10:34:33 +08:00 committed by Noisyfox
parent c12623f576
commit 604b7d9f70
10 changed files with 10 additions and 9 deletions

View file

@ -50,7 +50,7 @@
"model_id": "BL-P001",
"compatible_machine": [ "BL-P002", "C11", "C12", "C13" ],
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
"support_wrapping_deteciton": false,
"support_wrapping_detection": false,
"printer_type": "3DPrinter-X1-Carbon",
"printer_thumbnail_image": "printer_thumbnail",
"printer_connect_help_image": "input_access_code_x1",

View file

@ -52,7 +52,7 @@
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
"printer_type": "3DPrinter-X1",
"printer_thumbnail_image": "printer_thumbnail",
"support_wrapping_deteciton": false,
"support_wrapping_detection": false,
"printer_connect_help_image": "input_access_code_x1",
"printer_use_ams_image": "ams_icon",
"printer_ext_image": ["ext_image_xp"],

View file

@ -43,7 +43,7 @@
"bed_temperature_limit": 100
},
"model_id": "C11",
"support_wrapping_deteciton": false,
"support_wrapping_detection": false,
"compatible_machine": [ "BL-P001", "BL-P002", "C12", "C13" ],
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
"printer_type": "C11",

View file

@ -43,7 +43,7 @@
"bed_temperature_limit": 100
},
"model_id": "C12",
"support_wrapping_deteciton": false,
"support_wrapping_detection": false,
"compatible_machine": [ "BL-P001", "BL-P002", "C11", "C13" ],
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
"printer_type": "C12",

View file

@ -52,7 +52,7 @@
"nozzle_max_temperature": 320
},
"model_id": "C13",
"support_wrapping_deteciton": false,
"support_wrapping_detection": false,
"compatible_machine": [ "BL-P001", "BL-P002", "C11", "C12" ],
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
"printer_type": "C13",

View file

@ -43,7 +43,7 @@
"bed_temperature_limit": 80
},
"model_id": "N1",
"support_wrapping_deteciton": false,
"support_wrapping_detection": false,
"compatible_machine": [],
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
"printer_type": "N1",

View file

@ -45,7 +45,7 @@
"model_id": "N2S",
"compatible_machine": [],
"auto_cali_not_support_filaments": [ "GFU03", "GFU04" ],
"support_wrapping_deteciton": false,
"support_wrapping_detection": false,
"printer_type": "N2S",
"ftp_folder": "sdcard/",
"printer_thumbnail_image": "printer_thumbnail_n2s",

View file

@ -61,7 +61,7 @@
"support_user_preset": false
},
"model_id": "O1D",
"support_wrapping_deteciton": true,
"support_wrapping_detection": true,
"printer_modes": [ "fdm", "laser", "cut" ],
"compatible_machine": ["O1E"],
"printer_type": "O1D",

View file

@ -61,6 +61,7 @@
"support_user_preset": false
},
"model_id": "O1E",
"support_wrapping_detection": true,
"printer_modes": [ "fdm", "laser", "cut" ],
"compatible_machine": ["O1D"],
"printer_type": "O1E",

View file

@ -73,7 +73,7 @@ public:
static std::vector<std::string> get_unsupport_auto_cali_filaments(std::string type_str) { return get_value_from_config<std::vector<std::string>>(type_str, "auto_cali_not_support_filaments"); }
/*detection*/
static bool support_wrapping_detection(const std::string& type_str) { return get_value_from_config<bool>(type_str, "support_wrapping_deteciton"); }
static bool support_wrapping_detection(const std::string& type_str) { return get_value_from_config<bool>(type_str, "support_wrapping_detection"); }
public:
template<typename T>