xvc server: increase buffer size to 1MiB for improved performance over slow connections

This commit is contained in:
alec
2026-04-19 16:10:44 -07:00
parent 212a025de8
commit 7854dbe479
+1 -1
View File
@@ -28,7 +28,7 @@ XVC_server::XVC_server(int port, const cable_t & cable,
const std::string & firmware_path):_verbose(verbose > 1),
_jtag(NULL), _port(port), _sock(-1),
_is_stopped(false), _must_stop(false),
_buffer_size(2048), _state(Jtag::RUN_TEST_IDLE)
_buffer_size(1048576), _state(Jtag::RUN_TEST_IDLE)
{
(void)pin_conf;
(void)ip_adr;