... before remove old files

This commit is contained in:
2025-08-07 19:03:33 +03:00
parent 34d22614a6
commit a3b901223a
7 changed files with 57 additions and 37 deletions

View File

@@ -7,12 +7,12 @@ template <mcc::traits::mcc_range_of_input_char_range R>
AsibFM700Mount::AsibFM700Mount(AsibFM700Config config, std::shared_ptr<spdlog::logger> logger, const R& pattern_range)
: mcc::utils::MccSpdlogLogger(std::move(logger), pattern_range),
_currentConfig(std::move(config)),
base_gm_t(std::make_tuple(_currentConfig.astromEngineState),
std::make_tuple(_currentConfig.hardwareConfig),
std::make_tuple(_currentConfig.pecData),
std::make_tuple(std::ref(_astromEngine), std::ref(_pec), std::ref(_hardware)),
std::make_tuple(std::ref(_telemetry), std::ref(_hardware), std::ref(_pzFuncs)),
std::make_tuple(std::ref(_telemetry), std::ref(_hardware), std::ref(_pzFuncs)))
base_gm_t({_currentConfig.astromEngineState},
{_currentConfig.hardwareConfig},
{_currentConfig.pecData},
AsibFM700Telemetry{_astromEngine, _pec, _hardware},
slew_model_t{_telemetry, _hardware, _pzFuncs},
guiding_model_t{_telemetry, _hardware, _pzFuncs})
{
}