You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/platformio.rst
+31
Original file line number
Diff line number
Diff line change
@@ -172,6 +172,37 @@ To learn more about PSRAM usage, see: :doc:`RP2350 PSRAM Support <psram>`
172
172
; PSRAM size: 4MB
173
173
board_upload.psram_length = 4194304
174
174
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
0 commit comments