MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/application/procedures/NullEstimate.hh
2024-06-07 11:12:56 +03:00

58 lines
1.4 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* NullEstimate.hh
*
* Created on: 17 июл. 2020 г.
* Author: LeonidTitov
*/
#ifndef UMLIBRARY_APPLICATION_PROCEDURES_NULLESTIMATE_HH_
#define UMLIBRARY_APPLICATION_PROCEDURES_NULLESTIMATE_HH_
#include "../ISetupStep.hh"
#include "../../technological/function/NullEstimationByVoltage.hh"
#include <memory_resource>
namespace application { namespace procedures {
struct NullEstimate : public ISetupStep {
static const Environment::Id provider = 0;
typedef ResourceKeeper< technological::adapter::TieInterface<vector::IStandingVectorSet> > VectorControlResource;
typedef ResourceKeeper<std::pmr::monotonic_buffer_resource> MemoryResource;
VectorControlResource * vector_control = nullptr;
systemic::ISignal * position = nullptr;
MemoryResource * buffer = nullptr;
systemic::Parameter<technological::function::NullEstimationByVoltage> parameter;
bool input( Environment & env );
void build( Environment & env );
struct Links {
Environment::Id vector_ctrl;
Environment::SignalId position;
Environment::Id buffer;
Environment::SettingId params;
Environment::TechFunctionId procedure;
Environment::Id task;
};
const Links & links;
const configuration::ProcessConfig & params;
NullEstimate( const Links & links, const configuration::ProcessConfig & params );
};
}}
#endif /* UMLIBRARY_APPLICATION_PROCEDURES_NULLESTIMATE_HH_ */