From b1a6b4a5da86e8bd5aaae23c525db71222704a4c Mon Sep 17 00:00:00 2001 From: Al Cutter Date: Mon, 18 Mar 2024 08:58:31 +0000 Subject: [PATCH] Fix constant (#218) --- trusted_os/flash.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trusted_os/flash.go b/trusted_os/flash.go index 8abebfd..59f79e6 100644 --- a/trusted_os/flash.go +++ b/trusted_os/flash.go @@ -44,7 +44,7 @@ const ( osBlockA = 0x5050 osBlockB = 0x102828 crashLogBlock = 0x1D20000 // For storing contents of log ringbuffer on applet crash for later investigation. - crashLogNumBlocks = 0x400 // 1MB + crashLogNumBlocks = 0x800 // 1MB batchSize = 2048 )