Skip to content

Commit 709caf9

Browse files
authored
Feat: Ranging support with ryuw122 (#1121)
* First pass at ryuw122 UWB * clippy happy * added a 2 devices example * fmt * better ranging type naming & collections
1 parent 95c3439 commit 709caf9

17 files changed

Lines changed: 1975 additions & 0 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ members = [
5858
"components/sources/cu_vlp16",
5959
"components/sources/cu_wt901",
6060
"components/sources/cu_rp_encoder",
61+
"components/sources/cu_ryuw122",
6162
"components/sources/cu_sen0682",
6263
"components/tasks/cu_aligner",
6364
"components/tasks/cu_ahrs",
@@ -102,6 +103,7 @@ members = [
102103
"examples/cu_runtime_matrix",
103104
"examples/cu_parallel_mandelbrot",
104105
"examples/cu_remote_debug_session",
106+
"examples/cu_ryuw122_probe",
105107
"support/cargo_cunew",
106108
]
107109

components/payloads/cu_sensor_payloads/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,4 @@ textlogs = ["cu29/textlogs"]
3939
image = ["std", "dep:image"]
4040
kornia = ["std", "dep:kornia-image"]
4141
rerun = ["std", "dep:rerun"]
42+
reflect = ["cu29/reflect"]

components/payloads/cu_sensor_payloads/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ mod image;
1010
mod imu;
1111
#[cfg(feature = "std")]
1212
mod pointcloud;
13+
mod ranging;
1314
#[cfg(feature = "rerun")]
1415
mod rerun_components;
1516

@@ -22,3 +23,4 @@ pub use image::*;
2223
pub use imu::*;
2324
#[cfg(feature = "std")]
2425
pub use pointcloud::*;
26+
pub use ranging::*;

0 commit comments

Comments
 (0)