ECoS: removed test command option

(cherry picked from commit 9c2271ee4ce859737ef2622c499409bb295e7d28)
Dieser Commit ist enthalten in:
Reinder Feenstra 2022-06-19 22:57:31 +02:00
Ursprung 39c5f584b5
Commit cac339a001
2 geänderte Dateien mit 0 neuen und 12 gelöschten Zeilen

Datei anzeigen

@ -44,13 +44,6 @@ ECoSInterface::ECoSInterface(World& world, std::string_view _id)
, decoders{this, "decoders", nullptr, PropertyFlags::ReadOnly | PropertyFlags::NoStore | PropertyFlags::SubObject}
, inputs{this, "inputs", nullptr, PropertyFlags::ReadOnly | PropertyFlags::NoStore | PropertyFlags::SubObject}
, outputs{this, "outputs", nullptr, PropertyFlags::ReadOnly | PropertyFlags::NoStore | PropertyFlags::SubObject}
, testCommand{this, "test_command", "", PropertyFlags::ReadWrite | PropertyFlags::NoStore}
, testCommandSend{*this, "test_command_send",
[this]()
{
if(m_kernel)
m_kernel->postSend(testCommand.value() + "\n");
}}
{
name = "ECoS";
ecos.setValueInternal(std::make_shared<ECoS::Settings>(*this, ecos.name()));
@ -72,9 +65,6 @@ ECoSInterface::ECoSInterface(World& world, std::string_view _id)
Attributes::addDisplayName(outputs, DisplayName::Hardware::outputs);
m_interfaceItems.insertBefore(outputs, notes);
m_interfaceItems.add(testCommand);
m_interfaceItems.add(testCommandSend);
}
bool ECoSInterface::addDecoder(Decoder& decoder)

Datei anzeigen

@ -72,8 +72,6 @@ class ECoSInterface final
ObjectProperty<DecoderList> decoders;
ObjectProperty<InputList> inputs;
ObjectProperty<OutputList> outputs;
Property<std::string> testCommand;
Method<void()> testCommandSend;
ECoSInterface(World& world, std::string_view _id);