Skip to content

Commit cc6d359

Browse files
committed
added new types for zenoh-flow powered turtlebot
Signed-off-by: gabrik <gabriele.baldoni@gmail.com>
1 parent fc21eac commit cc6d359

File tree

8 files changed

+68
-627
lines changed

8 files changed

+68
-627
lines changed

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ members = [
3333
"video-file-source",
3434
"runtime",
3535
"run-record-replay",
36-
"turtlebot3-source",
36+
"source-tick",
37+
"tb3",
38+
"operator-twist",
39+
"source-gamepad",
3740
]
3841

3942
[profile.dev]

generic-sink/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,16 @@ impl Sink for GenericSink {
5858
println!("#######");
5959
println!("Example Generic Sink Received -> {:?}", input);
6060
println!("#######");
61-
Ok(())
6261
}
6362
Some(f) => {
6463
let mut guard = f.lock().await;
6564
writeln!(&mut guard, "#######").unwrap();
6665
writeln!(&mut guard, "Example Generic Sink Received -> {:?}", input).unwrap();
6766
writeln!(&mut guard, "#######").unwrap();
6867
guard.sync_all().unwrap();
69-
Ok(())
7068
}
7169
}
70+
Ok(())
7271
}
7372
}
7473

graphs/turtlebot3.yaml

Lines changed: 0 additions & 27 deletions
This file was deleted.

turtlebot3-source/Cargo.toml

Lines changed: 0 additions & 33 deletions
This file was deleted.

turtlebot3-source/src/addresses.rs

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)