From 44615ce5d2b0a4d2bd337168e88404dd4aea739e Mon Sep 17 00:00:00 2001 From: cuu Date: Thu, 5 Jun 2025 14:04:47 +0800 Subject: [PATCH] Update multi booter readme --- Code/pico_multi_booter/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Code/pico_multi_booter/README.md b/Code/pico_multi_booter/README.md index d41e3d6..94acfbd 100644 --- a/Code/pico_multi_booter/README.md +++ b/Code/pico_multi_booter/README.md @@ -4,7 +4,7 @@ Here is a bootloader for PicoCalc combined slightly modified [PicoMite](https:// - Pico1 - No sdcard inserted,load default app to run from flash. -- Sdcard inserted, SD boot menu will show up, load third pico app bin to run at FLASH TARGET OFFSET 2048k-152k +- Sdcard inserted, SD boot menu will show up, load third pico app bin to run at FLASH TARGET OFFSET 2048k-200k ## How to compile ``` @@ -24,20 +24,20 @@ Just copy **combined.uf2** into PicoCalc ## PicoMite configuration.h ``` -#define FLASH_TARGET_OFFSET (920 * 1024) +#define FLASH_TARGET_OFFSET (968 * 1024) ``` ## sd_boot config.h ``` -#define SD_BOOT_FLASH_OFFSET (152 * 1024) +#define SD_BOOT_FLASH_OFFSET (200 * 1024) ``` ### SD Card Application Build and Deployment **Important Note:** ``` -Applications intended for SD card boot "MUST REBUILD" using a custom linker script to accommodate the program's offset(152k) address. +Applications intended for SD card boot "MUST REBUILD" using a custom linker script to accommodate the program's offset(200k) address. Applications intended for SD card boot is in **bin** format, not uf2.