From 5eb6b9cd3c198ebf6d66dff8da77c765d88f0a6d Mon Sep 17 00:00:00 2001 From: jhchun Date: Fri, 10 Jul 2026 16:16:20 +0900 Subject: [PATCH] =?UTF-8?q?=EB=82=B4=EB=B6=80=20=ED=94=8C=EB=9E=98?= =?UTF-8?q?=EC=8B=9C=20=ED=8C=8C=ED=8B=B0=EC=85=98=20=ED=81=AC=EA=B8=B0=20?= =?UTF-8?q?=EC=A1=B0=EC=A0=95=20=EB=B0=8F=20=EC=8B=A0=EA=B7=9C=20=ED=8C=8C?= =?UTF-8?q?=ED=8B=B0=EC=85=98=20=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - VesiSeek 연동을 위해 내부 플래시 저장공간 필요 - Primary slot, Secondary slot을 484 KiB에서 320 KiB로 축소 - 신규 파티션 data_storage 생성: 328 KiB --- pm_static.yml | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/pm_static.yml b/pm_static.yml index 199d204..c393c6a 100644 --- a/pm_static.yml +++ b/pm_static.yml @@ -1,35 +1,46 @@ -app: - address: 0xc200 - region: flash_primary - size: 0x78e00 mcuboot: address: 0x0 region: flash_primary - size: 0xc000 + size: 0xc000 # 48 KiB + mcuboot_pad: address: 0xc000 region: flash_primary - size: 0x200 + size: 0x200 # 512 B + +app: + address: 0xc200 + region: flash_primary + size: 0x4fe00 # 319.5 KiB = 327,168 B + mcuboot_primary: address: 0xc000 orig_span: &id001 - mcuboot_pad - app region: flash_primary - size: 0x79000 + size: 0x50000 # 320 KiB span: *id001 + mcuboot_primary_app: address: 0xc200 orig_span: &id002 - app region: flash_primary - size: 0x78e00 + size: 0x4fe00 # same as app span: *id002 + mcuboot_secondary: - address: 0x85000 + address: 0x5c000 region: flash_primary - size: 0x79000 + size: 0x50000 # 320 KiB + +data_storage: + address: 0xac000 + region: flash_primary + size: 0x52000 # 328 KiB + settings_storage: address: 0xfe000 region: flash_primary - size: 0x2000 + size: 0x2000 # 8 KiB \ No newline at end of file