From c5da7301cfc12eace56cc82c4e0509308739c94e Mon Sep 17 00:00:00 2001 From: graham sanderson Date: Wed, 16 Jul 2025 08:39:14 -0500 Subject: [PATCH] move new config into RP2350 as it seems specific to that --- src/rp2040/boot_stage2/include/boot_stage2/config.h | 1 - src/rp2350/boot_stage2/include/boot_stage2/config.h | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/rp2040/boot_stage2/include/boot_stage2/config.h b/src/rp2040/boot_stage2/include/boot_stage2/config.h index 270c5d18..aaa3faf1 100644 --- a/src/rp2040/boot_stage2/include/boot_stage2/config.h +++ b/src/rp2040/boot_stage2/include/boot_stage2/config.h @@ -12,7 +12,6 @@ #include "pico.h" // PICO_CONFIG: PICO_FLASH_SPI_CLKDIV, Clock divider fron clk_sys to use for serial flash communications in boot stage 2. On RP2040 this must be a multiple of 2, type=int, default=varies; often specified in board header, advanced=true, group=boot_stage2 -// PICO_CONFIG: PICO_FLASH_SPI_RXDELAY, Receive delay in 1/2 clock cycles to use for serial flash communications in boot stage 2, type=int, default=varies; often specified in board header, advanced=true, group=boot_stage2 // PICO_CONFIG: PICO_BUILD_BOOT_STAGE2_NAME, Name of the boot stage 2 if selected in the build system, group=boot_stage2 #ifdef PICO_BUILD_BOOT_STAGE2_NAME diff --git a/src/rp2350/boot_stage2/include/boot_stage2/config.h b/src/rp2350/boot_stage2/include/boot_stage2/config.h index a73778af..b18bad4f 100644 --- a/src/rp2350/boot_stage2/include/boot_stage2/config.h +++ b/src/rp2350/boot_stage2/include/boot_stage2/config.h @@ -11,6 +11,9 @@ #include "pico.h" +// PICO_CONFIG: PICO_FLASH_SPI_CLKDIV, Clock divider fron clk_sys to use for serial flash communications in boot stage 2. On RP2040 this must be a multiple of 2, type=int, default=varies; often specified in board header, advanced=true, group=boot_stage2 +// PICO_CONFIG: PICO_FLASH_SPI_RXDELAY, Receive delay in 1/2 clock cycles to use for serial flash communications in boot stage 2, type=int, default=varies; often specified in board header, advanced=true, group=boot_stage2 + // PICO_CONFIG: PICO_BUILD_BOOT_STAGE2_NAME, Name of the boot stage 2 if selected in the build system, group=boot_stage2 #ifdef PICO_BUILD_BOOT_STAGE2_NAME #define _BOOT_STAGE2_SELECTED