Skip to content

Add PSRAM size menu to Adafruit Feather 2350 HSTX #2521

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 2 commits into from
Oct 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions boards.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5365,6 +5365,14 @@ adafruit_feather_rp2350_hstx.menu.freq.275=275 MHz (Overclock)
adafruit_feather_rp2350_hstx.menu.freq.275.build.f_cpu=275000000L
adafruit_feather_rp2350_hstx.menu.freq.300=300 MHz (Overclock)
adafruit_feather_rp2350_hstx.menu.freq.300.build.f_cpu=300000000L
adafruit_feather_rp2350_hstx.menu.psram.0mb=0MByte PSRAM
adafruit_feather_rp2350_hstx.menu.psram.0mb.build.psram_length=0x000000
adafruit_feather_rp2350_hstx.menu.psram.2mb=2MByte PSRAM
adafruit_feather_rp2350_hstx.menu.psram.2mb.build.psram_length=0x200000
adafruit_feather_rp2350_hstx.menu.psram.4mb=4MByte PSRAM
adafruit_feather_rp2350_hstx.menu.psram.4mb.build.psram_length=0x400000
adafruit_feather_rp2350_hstx.menu.psram.8mb=8MByte PSRAM
adafruit_feather_rp2350_hstx.menu.psram.8mb.build.psram_length=0x800000
adafruit_feather_rp2350_hstx.menu.opt.Small=Small (-Os) (standard)
adafruit_feather_rp2350_hstx.menu.opt.Small.build.flags.optimize=-Os
adafruit_feather_rp2350_hstx.menu.opt.Optimize=Optimize (-O)
Expand Down
3 changes: 3 additions & 0 deletions tools/makeboards.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,9 @@ def MakeBoard(name, chip, vendor_name, product_name, vid, pid, pwr, boarddefine,
BuildPSRAMCS(name)
BuildPSRAM(name)
BuildPSRAMFreq(name)
elif name == "adafruit_feather_rp2350_hstx":
# Optional, user needs to solder themselves
BuildPSRAM(name)
else:
BuildFreq(name, 133)
BuildOptimize(name)
Expand Down
Loading