SLS4All-Backup / Configuration /appsettings.user.toml
ppak10's picture
Adds backup 07/12/2026.
cf937de
Raw
History Blame Contribute Delete
2.92 kB
# Place custom user options here, e.g.:
[OptionsClassName]
Property1 = "text value"
Property2 = 3.14
Property3 = true
Property4 = [ 1, 2, 3 ]
Property5.SubProperty = "something"
# [McuManager.Heaters.powderChamber3]
# IsEnabled = false
# >>> Inova.ApiPlugin (managed by install.sh) >>>
[Application.PluginAssemblies]
"Inova.ApiPlugin" = "/home/ppak/SLS4All/Plugins/Inova.ApiPlugin/Inova.ApiPlugin.dll"
[Application.PluginServices]
"Inova.ApiPlugin" = { Implementation = "Inova.ApiPlugin.InovaApiPlugin, Inova.ApiPlugin", Registration = "AsImplementationAndInterfaces", Lifetime = "Singleton" }
# Plugin replacements:
# Inova.LoggingCodePlotter: decorates the firmware's closed-source
# ImageCodePlotter so every ICodePlotter call is teed into a fan-out +
# per-layer ring buffer (exposed via /plotter/commands/stream WS and
# /plotter/layer/{n}/commands GET).
# Inova.LoggingMovementClient (DISABLED 2026-06-29): subclasses
# McuMovementClient. First real deployment hung the firmware at
# "Creating delayed constructables" phase with 0% CPU and no plugin
# trace — strongly suspected DI cycle (LoggingMovementClient depends on
# McuPrinterClient, which depends on McuMovementClient, which the
# substitution rewrites back to LoggingMovementClient). The plugin DLL
# still ships the class for future re-enablement once the cycle is broken
# (e.g. via Lazy<McuPrinterClient> or a different registration shape);
# leave the TOML line commented out until then.
# Inova.FullRecoatLayerClient: subclasses LayerClient to expand one layer
# into N full-height recoats — one normal recoat plus N-1 repeat sweeps
# at the same bed height, optionally each feeding a fresh powder dose
# (the /printing/recoater-passes-full override). Passthrough (single
# base call) while the override is unset.
# DI-cycle note: unlike LoggingMovementClient, LayerClient's dependencies
# (movement/printer/temperature/surface clients) don't resolve ILayerClient
# back, so the substitution shouldn't recreate that boot hang — but watch
# the first boot after enabling regardless.
# See CompactServiceCollectionExtensions.cs:115 for how the replacement
# mechanism is applied.
[Application.PluginReplacements]
"Inova.LoggingCodePlotter" = { Original = "SLS4All.Compact.Slicing.ImageCodePlotter, SLS4All.Compact.Processing", Replacement = "Inova.ApiPlugin.LoggingCodePlotter, Inova.ApiPlugin" }
"Inova.FullRecoatLayerClient" = { Original = "SLS4All.Compact.Movement.LayerClient, SLS4All.Compact.Processing", Replacement = "Inova.ApiPlugin.FullRecoatLayerClient, Inova.ApiPlugin" }
# "Inova.LoggingMovementClient" = { Original = "SLS4All.Compact.Movement.McuMovementClient, SLS4All.Compact.McuClient", Replacement = "Inova.ApiPlugin.LoggingMovementClient, Inova.ApiPlugin" }
# <<< Inova.ApiPlugin (managed by install.sh) <<<