This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
dora-rs
/
dora
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
124
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
fix: in c++ ros2 example, too few ticks to ensure everything work correctly
tags/v0.3.12-fix
drindr
6 months ago
parent
42775e3612
commit
37ea05439a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
examples/c++-ros2-dataflow/node-rust-api/main.cc
+ 1
- 1
examples/c++-ros2-dataflow/node-rust-api/main.cc
View File
@@ -73,7 +73,7 @@ int main()
std::cerr << "Unknown event type " << static_cast<int>(ty) << std::endl;
}
if (received_ticks > 20)
if (received_ticks > 20
&& responses_received > 0
)
{
break;
}
Write
Preview
Loading…
Cancel
Save