Decrease max memsize to a reasonable value.

This commit is contained in:
Serge Vakulenko 2018-10-26 20:14:36 -07:00
parent 3d08f0768b
commit 85fb185afc

View File

@ -53,7 +53,7 @@ static struct {
{ 0, 0 } { 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 int radio_progress; // Read/write progress counter
static radio_device_t *device; // Device-dependent interface static radio_device_t *device; // Device-dependent interface