Merge pull request #1433 from tpwrules/faster-jtaguart

Increase JTAG UART upload speed
This commit is contained in:
enjoy-digital 2023-12-13 15:05:37 +01:00 committed by GitHub
commit cdd80a5f4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 6 deletions

View File

@ -144,12 +144,8 @@ proc jtagstream_drain {tap tx chunk_rx max_rx} {
proc jtagstream_rxtx {tap client is_poll} {
if {![$client eof]} {
if {!$is_poll} {
set tx [$client read 1]
} else {
set tx ""
}
set rx [jtagstream_drain $tap $tx 64 4096]
set tx [$client read 512]
set rx [jtagstream_drain $tap $tx 512 4096]
if {[string length $rx]} {
#echo [string length $rx]
$client puts -nonewline $rx
@ -167,6 +163,7 @@ proc jtagstream_rxtx {tap client is_poll} {
proc jtagstream_client {tap sock} {
set client [$sock accept]
fconfigure $client -buffering none
fconfigure $client -blocking 0
$client readable [list jtagstream_rxtx $tap $client 0]
$client onexception [list $client close]
after 1 [list jtagstream_rxtx $tap $client 1]