Add support for specifying the firmware type in the profile

This commit is contained in:
LarsBrubaker 2020-04-11 09:42:07 -07:00
parent 87f03798a3
commit b19e0a7629
8 changed files with 48 additions and 11 deletions

View file

@ -874,6 +874,17 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
Converter = new ValueConverter(),
},
new SliceSettingData()
{
SlicerConfigName = SettingsKey.firmware_type,
PresentationName = "Firmware Type".Localize(),
HelpText = "The firmware being used by the printer. Allows for improvements based on firmware such as optimized G-Code output.".Localize(),
DataEditType = DataEditTypes.LIST,
ShowIfSet = "!sla_printer",
ListValues = "Unknown,Marlin,Smoothie",
DefaultValue = "Unknown",
Converter = new ValueConverter(),
},
new SliceSettingData()
{
SlicerConfigName = SettingsKey.print_leveling_solution,
PresentationName = "Leveling Solution".Localize(),