From 2f77e1c3fa74738fdd64a7a4048360ee13bf37cd Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Thu, 29 Jan 2026 15:48:33 +0100 Subject: [PATCH] Add 8K flash area for binding. Signed-off-by: Pol Henarejos --- config/rp2350/pt.json | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/config/rp2350/pt.json b/config/rp2350/pt.json index a6cf59f..48acfc5 100644 --- a/config/rp2350/pt.json +++ b/config/rp2350/pt.json @@ -10,7 +10,7 @@ }, "partitions": [ { - "name": "Pico Keys Firmware", + "name": "PicoKeys Firmware", "id": 0, "start": 0, "size": "1024K", @@ -22,10 +22,10 @@ } }, { - "name": "Pico Keys Data", + "name": "PicoKeys Data", "id": 1, - "start": "1024K", - "size": "3072K", + "start": "1032K", + "size": "3064K", "families": ["data"], "permissions": { "secure": "rw", @@ -35,6 +35,21 @@ "link": ["owner", 0], "ignored_during_arm_boot": true, "ignored_during_riscv_boot": true + }, + { + "name": "PicoKeys Binding", + "id": 2, + "start": "1024K", + "size": "8K", + "families": ["data"], + "permissions": { + "secure": "r", + "nonsecure": "", + "bootloader": "w" + }, + "link": ["owner", 0], + "ignored_during_arm_boot": true, + "ignored_during_riscv_boot": true } ] }