Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add comma separated digitiser argument in aggregator #290

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion digitiser-aggregator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ struct Cli {
output_topic: String,

/// A list of expected digitiser IDs.
/// Can be passed as `-d0 -d1 ...` or `-d=0,1,...`
/// A frame is only "complete" when a message has been received from each of these IDs.
#[clap(short, long)]
#[clap(short, long, value_delimiter = ',')]
digitiser_ids: Vec<DigitizerId>,

/// Frame TTL in milliseconds.
Expand Down
Loading