mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 08:47:52 -06:00
+ add FlashAir support for host upload
This commit is contained in:
parent
2399570950
commit
3321ae7f13
6 changed files with 272 additions and 1 deletions
|
@ -30,7 +30,7 @@ enum GCodeFlavor : unsigned char {
|
|||
};
|
||||
|
||||
enum PrintHostType {
|
||||
htOctoPrint, htDuet
|
||||
htOctoPrint, htDuet, htFlashAir
|
||||
};
|
||||
|
||||
enum InfillPattern {
|
||||
|
@ -102,6 +102,7 @@ template<> inline const t_config_enum_values& ConfigOptionEnum<PrintHostType>::g
|
|||
if (keys_map.empty()) {
|
||||
keys_map["octoprint"] = htOctoPrint;
|
||||
keys_map["duet"] = htDuet;
|
||||
keys_map["flashair"] = htFlashAir;
|
||||
}
|
||||
return keys_map;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue