aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--riscv/remote_bitbang.cc1
-rw-r--r--riscv/remote_bitbang.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/riscv/remote_bitbang.cc b/riscv/remote_bitbang.cc
index 8453e85..182b371 100644
--- a/riscv/remote_bitbang.cc
+++ b/riscv/remote_bitbang.cc
@@ -106,7 +106,6 @@ void remote_bitbang_t::tick()
void remote_bitbang_t::execute_commands()
{
- static char send_buf[buf_size];
unsigned total_processed = 0;
bool quit = false;
bool in_rti = tap->state() == RUN_TEST_IDLE;
diff --git a/riscv/remote_bitbang.h b/riscv/remote_bitbang.h
index 1db4d55..b5b73bf 100644
--- a/riscv/remote_bitbang.h
+++ b/riscv/remote_bitbang.h
@@ -22,6 +22,7 @@ private:
int client_fd;
static const ssize_t buf_size = 64 * 1024;
+ char send_buf[buf_size];
char recv_buf[buf_size];
ssize_t recv_start, recv_end;