From 85fb185afcc42b2f8be2c260d38cd698d21dc24f Mon Sep 17 00:00:00 2001 From: Serge Vakulenko Date: Fri, 26 Oct 2018 20:14:36 -0700 Subject: [PATCH] Decrease max memsize to a reasonable value. --- radio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radio.c b/radio.c index 7ebf85b..15a3be3 100644 --- a/radio.c +++ b/radio.c @@ -53,7 +53,7 @@ static struct { { 0, 0 } }; -unsigned char radio_mem [1024*1024*67]; // Radio memory contents, up to 67 Mbytes +unsigned char radio_mem [1024*1024*2]; // Radio memory contents, up to 2 Mbytes int radio_progress; // Read/write progress counter static radio_device_t *device; // Device-dependent interface