Dateien hochladen nach „src/UDPStimCodeSender“

This commit is contained in:
Tobias Baumann 2022-02-11 12:14:37 +00:00
parent b5ab468b8e
commit 11b56e4925

@ -87,7 +87,7 @@ bool CBoxAlgorithmUDPStimcodeSender::process()
if(StimulationID >= RowStimulationBase && StimulationID < (RowStimulationBase + NumberofTactilos))
{
this->getLogManager() << LogLevel_Info << "send udp : [StimulusCode " << (StimulationID-RowStimulationBase+1) << "]\n";
this->getLogManager() << LogLevel_Debug << "send udp : [StimulusCode " << (StimulationID-RowStimulationBase+1) << "]\n";
socket.send(boost::asio::buffer(std::to_string(StimulationID-RowStimulationBase+1)));
}
}