Skip to content

Commit

Permalink
[pbctl] - add support for "continue"
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Neill committed Jan 8, 2011
1 parent 5d315f5 commit c6ea232
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pbctl/pbctl
Expand Up @@ -32,6 +32,7 @@ Options:
--start Start PulseBlaster program on device
--stop Stop PulseBlaster program on device
--arm Arm PulseBlaster program on device
--continue Continue PulseBlaster program on device
=head1 OPTIONS
Expand Down Expand Up @@ -65,6 +66,11 @@ Stop running the program currently loaded on the PulseBlaster device.
Arm the program currently loaded on the PulseBlaster device. The
program will start running when externally triggered.
=item C<< --continue >>
Continue the program after a WAIT. Unlike start, it does not reset
the PulseBlaster first.
=back
=cut
Expand All @@ -86,6 +92,7 @@ my $opts = {
"start" => sub { push @$actions, "start"; },
"stop" => sub { push @$actions, "stop"; },
"arm" => sub { push @$actions, "arm"; },
"continue" => sub { push @$actions, "continue"; },
};

Getopt::Long::Configure ( "bundling", "auto_abbrev" );
Expand Down

0 comments on commit c6ea232

Please sign in to comment.