MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/schematic/SignalTable2.hh
2024-06-07 11:12:56 +03:00

45 lines
728 B
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.

/*
* SignalTable2.hh
*
* Created on: 2 февр. 2023 г.
* Author: titov
*/
#ifndef UMLIBRARY_SCHEMATIC_SIGNALTABLE2_HH_
#define UMLIBRARY_SCHEMATIC_SIGNALTABLE2_HH_
#include "ValueTable.hpp"
namespace schematic {
typedef ::schematic::ValueTable<float, 2> SignalTable2D;
struct SetterSignalTable2D {
typedef SignalTable2D Object;
typedef typename Object::Value Value;
struct Setting {
Value value_a0b0;
Value value_a0b1;
Value value_a1b0;
Value value_a1b1;
bool isValid();
};
Object * object;
SetterSignalTable2D( Object * object );
void configure( const Setting & setting );
};
}
#endif /* UMLIBRARY_SCHEMATIC_SIGNALTABLE2_HH_ */