We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f36c25d commit e8f838fCopy full SHA for e8f838f
1 file changed
src/OpenCOVER/plugins/hlrs/TacxFTMS/TacxFTMS.cpp
@@ -122,7 +122,7 @@ bool TacxFTMS::init() {
122
if (!udpAlpine->isBad()) {
123
alpinefound = true;
124
} else {
125
- std::cerr << "TacxFTMS: failed to open local UDP port"
+ std::cerr << "Alpine: failed to open local UDP port"
126
<< localPortAlpine << std::endl;
127
alpinefound = false;
128
}
@@ -277,7 +277,8 @@ void TacxFTMS::updateThread() {
277
<< status << ", got=" << status << std::endl;
278
return;
279
280
- } else if (udpAlpine) {
+ }
281
+ if (udpAlpine) {
282
char tmpBuf[10000];
283
int status;
284
status = udpAlpine->receive(&tmpBuf, 10000);
0 commit comments