From 0b7e53e72d3bb4a8642d22614c4613e38462d1c0 Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Wed, 14 May 2025 08:29:07 +0200 Subject: [PATCH] fix(core/bootloader): increase c_laoyout_t buffer size [no changelog] --- core/embed/rust/rust_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/embed/rust/rust_types.h b/core/embed/rust/rust_types.h index fda46961cf..a1d4bcd28f 100644 --- a/core/embed/rust/rust_types.h +++ b/core/embed/rust/rust_types.h @@ -2,5 +2,5 @@ // additional type for C-rust interface typedef struct { - uint8_t buf[1024]; + uint8_t buf[2048]; } c_layout_t;