Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
boards:pico [2024/10/16 14:40] – [Bootloader] darronboards:pico [2024/10/16 16:12] (current) – [Power] darron
Line 15: Line 15:
 are whether they come pre-installed with header pins and a debug socket and if they have a WiFi adapter on board. are whether they come pre-installed with header pins and a debug socket and if they have a WiFi adapter on board.
  
 +===Power===
 +<wrap right>
 +{{picopower.png?150}}
 +</wrap>
  
 +<code>
 +40 VBUS   USB 5V
 +39 VSYS   RT6150B-33GQW INPUT
 +38 GND
 +37 3V3_EN RT6150B-33GQW ENABLE
 +36 3V3    RT6150B-33GQW OUTPUT 300mA MAX
 +...
 +</code>
 ===Bootloader=== ===Bootloader===
  
Line 121: Line 133:
 Below are two PICOs which contain no firmware and one Below are two PICOs which contain no firmware and one
 other running debugprobe. other running debugprobe.
 +
 +==RP2040==
  
 <code> <code>
Line 188: Line 202:
 </code> </code>
  
 +==RP2350==
 +
 +<code>
 +Program Information
 + none
 +
 +Fixed Pin Information
 + none
 +
 +Build Information
 + none
 +
 +Device Information
 + type:                   RP2350
 + revision:               A2
 + package:                QFN60
 + chipid:                 0x1c789de3e289c250
 + flash devinfo:          0x0c00
 + current cpu:            ARM
 + available cpus:         ARM, RISC-V
 + default cpu:            ARM
 + secure boot:            0
 + debug enable:           1
 + secure debug enable:    1
 + boot_random:            509d1a5d:1a015864:615e1d4b:c7483967
 + boot type:              normal
 + last booted partition:  none
 + diagnostic source:      slot 0
 + last boot diagnostics:  0x00010041
 + rom gitrev:             0x312e22fa
 +</code>
 Reboot firmware on specific device Reboot firmware on specific device
  
Line 250: Line 295:
 cd debugprobe_on_pico cd debugprobe_on_pico
 cmake -DDEBUG_ON_PICO=1 .. cmake -DDEBUG_ON_PICO=1 ..
 +make
 +</code>
 +
 +==Pi PICO 2==
 +
 +<code>
 +cd /opt/src/debugprobe
 +mkdir debugprobe_on_pico2
 +cd debugprobe_on_pico2
 +cmake -DDEBUG_ON_PICO=1 -DPICO_BOARD=pico2 -DPICO_PLATFORM=rp2350 ..
 make make
 </code> </code>