ENH: add printer structure in code

Signed-off-by: xun.zhang <xun.zhang@bambulab.com>
Change-Id: I57c24a0ea977b510932970817d67570ab3fe7bc4
(cherry picked from commit 409f03de471f65b9edf5c733b691e280c18c19cc)
This commit is contained in:
xun.zhang 2023-08-22 19:39:45 +08:00 committed by Lane.Wei
parent 4ac098df4d
commit 9bf251c54c
4 changed files with 39 additions and 1 deletions

View file

@ -210,6 +210,15 @@ enum NozzleType {
ntCount
};
// BBS
enum PrinterStructure {
psUndefine=0,
psCoreXY,
psI3,
psHbot,
psDelta
};
// BBS
enum ZHopType {
zhtAuto = 0,
@ -878,6 +887,7 @@ PRINT_CONFIG_CLASS_DEFINE(
((ConfigOptionString, template_custom_gcode))
//BBS
((ConfigOptionEnum<NozzleType>, nozzle_type))
((ConfigOptionEnum<PrinterStructure>,printer_structure))
((ConfigOptionBool, auxiliary_fan))
((ConfigOptionBool, support_chamber_temp_control))
((ConfigOptionBool, support_air_filtration))