10000 Add PSRAM size menu to Adafruit Feather RP2350 HSTX (#2521) · marklove5102/arduino-pico@5f77e12 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5f77e12

Browse files
Add PSRAM size menu to Adafruit Feather RP2350 HSTX (earlephilhower#2521)
See earlephilhower#2512
1 parent 2f55223 commit 5f77e12

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

boards.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5365,6 +5365,14 @@ adafruit_feather_rp2350_hstx.menu.freq.275=275 MHz (Overclock)
53655365
adafruit_feather_rp2350_hstx.menu.freq.275.build.f_cpu=275000000L
53665366
adafruit_feather_rp2350_hstx.menu.freq.300=300 MHz (Overclock)
53675367
adafruit_feather_rp2350_hstx.menu.freq.300.build.f_cpu=300000000L
5368+
adafruit_feather_rp2350_hstx.menu.psram.0mb=0MByte PSRAM
5369+
adafruit_feather_rp2350_hstx.menu.psram.0mb.build.psram_length=0x000000
5370+
adafruit_feather_rp2350_hstx.menu.psram.2mb=2MByte PSRAM
5371+
adafruit_feather_rp2350_hstx.menu.psram.2mb.build.psram_length=0x200000
5372+
adafruit_feather_rp2350_hstx.menu.psram.4mb=4MByte PSRAM
5373+
adafruit_feather_rp2350_hstx.menu.psram.4mb.build.psram_length=0x400000
5374+
adafruit_feather_rp2350_hstx.menu.psram.8mb=8MByte PSRAM
5375+
adafruit_feather_rp2350_hstx.menu.psram.8mb.build.psram_length=0x800000
53685376
adafruit_feather_rp2350_hstx.menu.opt.Small=Small (-Os) (standard)
53695377
adafruit_feather_rp2350_hstx.menu.opt.Small.build.flags.optimize=-Os
53705378
adafruit_feather_rp2350_hstx.menu.opt.Optimize=Optimize (-O)

tools/makeboards.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,9 @@ def MakeBoard(name, chip, vendor_name, product_name, vid, pid, pwr, boarddefine,
342342
BuildPSRAMCS(name)
343343
BuildPSRAM(name)
344344
BuildPSRAMFreq(name)
345+
elif name == "adafruit_feather_rp2350_hstx":
346+
# Optional, user needs to solder themselves
347+
BuildPSRAM(name)
345348
else:
346349
BuildFreq(name, 133)
347350
BuildOptimize(name)

0 commit comments

Comments
 (0)
0