File tree Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 11Revision history for Device-FTDI
22
3+ 0.13 2017/01/08 23:41:06
4+ [CHANGES]
5+ * Add debugging prints to SPI MPSSE subclass
6+ * Improved I²C transfer speed
7+
8+ [BUGFIXES]
9+ * Split writes longer than 1024 bytes into chunks to avoid stalling
10+ the device on buffer overruns
11+
3120.12 2016/10/02 22:18:57
413 [CHANGES]
514 * Rename 'CS' to 'SS' in the SPI subclass
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use 5.010;
44use strict;
55use warnings;
66
7- our $VERSION = ' 0.12 ' ;
7+ our $VERSION = ' 0.13 ' ;
88
99=head1 NAME
1010
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ use base qw( Device::FTDI::MPSSE );
1111
1212use utf8;
1313
14- our $VERSION = ' 0.12 ' ;
14+ our $VERSION = ' 0.13 ' ;
1515
1616=head1 NAME
1717
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use strict;
99use warnings;
1010use 5.010; # //
1111
12- our $VERSION = ' 0.12 ' ;
12+ our $VERSION = ' 0.13 ' ;
1313
1414# Testing on my FT232H board suggests that the MPSSE gets upset and stalls if
1515# you write more than 1024 bytes at once.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use strict;
99use warnings;
1010use base qw( Device::FTDI::MPSSE ) ;
1111
12- our $VERSION = ' 0.12 ' ;
12+ our $VERSION = ' 0.13 ' ;
1313
1414=head1 NAME
1515
You can’t perform that action at this time.
0 commit comments