From c8bc21a3938bd1f57fb2d9c35e68290059f062c3 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 20 Jun 2019 11:52:35 +0200 Subject: [PATCH] core: bump SD card capacity to 64MB in emulator --- core/embed/unix/sdcard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/embed/unix/sdcard.c b/core/embed/unix/sdcard.c index ec61abcebc..63efb89bf5 100644 --- a/core/embed/unix/sdcard.c +++ b/core/embed/unix/sdcard.c @@ -33,7 +33,7 @@ #define SDCARD_FILE profile_sdcard_path() #endif -#define SDCARD_SIZE (32 * 1024 * 1024) +#define SDCARD_SIZE (64 * 1024 * 1024) static uint8_t *sdcard_buffer; static secbool sdcard_powered;