Skip to content

Commit 06d7759

Browse files
committed
Document PSRAM and Boot2 better
1 parent b506c01 commit 06d7759

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

docs/platformio.rst

+31
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,37 @@ To learn more about PSRAM usage, see: :doc:`RP2350 PSRAM Support <psram>`
172172
; PSRAM size: 4MB
173173
board_upload.psram_length = 4194304
174174
175+
PSRAM chip select (CS)
176+
----------
177+
178+
For RP2350 based boards, this controls what chip-select (also called: slave-select / SS) pin to use when wanting to talk to the PSRAM chip.
179+
180+
Note that it's not needed to set this with a board that is known to have a PSRAM chip on-board, such as a "Sparkfun Thing Plus 2350". The ``pins_arduino.h`` of that variant already has the correct definition.
181+
182+
To learn more about PSRAM usage, see: :doc:`RP2350 PSRAM Support <psram>`
183+
184+
.. code:: ini
185+
186+
; PSRAM CS is at GP47
187+
build_flags =
188+
-DRP2350_PSRAM_CS=47
189+
190+
191+
Boot2 Source
192+
------------
193+
194+
Boot2 is the second stage bootloader and predominantly used on the RP2040.
195+
Its main purpose is to configure the communication with the Flash at the highest, safest speed it can.
196+
All known boards have their correct value already configured. However, when choosing ``board = generic``,
197+
you can freely configure the Boot2 to be for a different flash.
198+
199+
For possible Boot2 filenames, `please see here <https://github.com/earlephilhower/arduino-pico/tree/master/boot2/rp2040>`__.
200+
201+
.. code:: ini
202+
203+
; expect an ISSI IS25LP080 flash, SPI frequency = CPU frequency divided by 2
204+
board_build.arduino.earlephilhower.boot2_source = boot2_is25lp080_2_padded_checksum.S
205+
175206
CPU Speed
176207
---------
177208

0 commit comments

Comments
 (0)