diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/dfatool | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/dfatool b/bin/dfatool index 58f59d6..ce9224e 100755 --- a/bin/dfatool +++ b/bin/dfatool @@ -16,6 +16,7 @@ my %opt; GetOptions( \%opt, qw{ + baudrate=i class=s exclude-states=s@ ignore-nested-calls @@ -51,6 +52,7 @@ if ( @ARGV < 2 ) { my ( $command, $model_file, @data_files ) = @ARGV; my $driver = Kratos::DFADriver->new( + baud_rate => $opt{baudrate} // 115200, cache => $opt{'no-cache'} ? 0 : 1, class_name => $opt{class}, data_file => $data_files[0], |