Browse Source

Increase count max

tags/v0.2.5-alpha.2
Yuma Hiramatsu 4 years ago
parent
commit
28bd8ab742
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      rclrust/examples/publisher.rs

+ 1
- 1
rclrust/examples/publisher.rs View File

@@ -12,7 +12,7 @@ fn main() -> Result<()> {
let logger = node.logger();
let publisher = node.create_publisher::<String_>("message", &QoSProfile::default())?;

for count in 0..100 {
for count in 0..1000 {
publisher.publish(&String_ {
data: format!("hello {}", count),
})?;


Loading…
Cancel
Save