mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2026-03-14 21:19:43 +01:00
Correct Seeed XIAO RP2350 flash size from 4MB to 2MB (#2837)
Fixes #2834
This commit is contained in:
parent
6262b49c74
commit
0da73ec045
1 changed files with 2 additions and 2 deletions
|
|
@ -140,9 +140,9 @@ pico_board_cmake_set(PICO_PLATFORM, rp2350)
|
|||
#define PICO_FLASH_SPI_CLKDIV 4
|
||||
#endif
|
||||
|
||||
pico_board_cmake_set_default(PICO_FLASH_SIZE_BYTES, (4 * 1024 * 1024))
|
||||
pico_board_cmake_set_default(PICO_FLASH_SIZE_BYTES, (2 * 1024 * 1024))
|
||||
#ifndef PICO_FLASH_SIZE_BYTES
|
||||
#define PICO_FLASH_SIZE_BYTES (4 * 1024 * 1024)
|
||||
#define PICO_FLASH_SIZE_BYTES (2 * 1024 * 1024)
|
||||
#endif
|
||||
|
||||
pico_board_cmake_set_default(PICO_RP2350_A2_SUPPORTED, 1)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue