Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-pico
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-pico
Commits
f91c4b3b
Unverified
Commit
f91c4b3b
authored
Jan 03, 2022
by
arturo182
Committed by
GitHub
Jan 03, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add the RP2040 Stamp board (#407)
parent
83b94869
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
529 additions
and
0 deletions
+529
-0
README.md
README.md
+1
-0
boards.txt
boards.txt
+487
-0
tools/makeboards.py
tools/makeboards.py
+1
-0
variants/solderparty_rp2040_stamp/pins_arduino.h
variants/solderparty_rp2040_stamp/pins_arduino.h
+40
-0
No files found.
README.md
View file @
f91c4b3b
...
...
@@ -26,6 +26,7 @@ See https://arduino-pico.readthedocs.io/en/latest/ along with the examples for m
*
Invector Labs Challenger RP2040 LTE
*
Invector Labs RPICO32
*
Melopero Shake RP2040
*
Solder Party RP2040 Stamp
*
SparkFun ProMicro RP2040
*
uPesy RP2040 DevKit
*
WIZnet W5100S-EVB-Pico
...
...
boards.txt
View file @
f91c4b3b
This diff is collapsed.
Click to expand it.
tools/makeboards.py
View file @
f91c4b3b
...
...
@@ -173,5 +173,6 @@ MakeBoard("challenger_2040_lte", "iLabs", "Challenger 2040 LTE", "0x2e8a", "0x10
MakeBoard
(
"challenger_nb_2040_wifi"
,
"iLabs"
,
"Challenger NB 2040 WiFi"
,
"0x2e8a"
,
"0x100b"
,
500
,
"CHALLENGER_NB_2040_WIFI_RP2040"
,
8
,
"boot2_w25q080_2_padded_checksum"
)
MakeBoard
(
"ilabs_rpico32"
,
"iLabs"
,
"RPICO32"
,
"0x2e8a"
,
"0x1010"
,
250
,
"ILABS_2040_RPICO32_RP2040"
,
8
,
"boot2_w25q080_2_padded_checksum"
)
MakeBoard
(
"melopero_shake_rp2040"
,
"Melopero"
,
"Shake RP2040"
,
"0x2e8a"
,
"0x1005"
,
250
,
"MELOPERO_SHAKE_RP2040"
,
16
,
"boot2_w25q080_2_padded_checksum"
)
MakeBoard
(
"solderparty_rp2040_stamp"
,
"Solder Party"
,
"RP2040 Stamp"
,
"0x1209"
,
"0xa182"
,
500
,
"SOLDERPARTY_RP2040_STAMP"
,
8
,
"boot2_generic_03h_4_padded_checksum"
)
MakeBoard
(
"upesy_rp2040_devkit"
,
"uPesy"
,
"RP2040 DevKit"
,
"0x2e8a"
,
"0x1007"
,
250
,
"UPESY_RP2040_DEVKIT"
,
2
,
"boot2_w25q080_2_padded_checksum"
)
MakeBoard
(
"wiznet_5100s_evb_pico"
,
"WIZnet"
,
"W5100S-EVB-Pico"
,
"0x2e8a"
,
"0x1008"
,
250
,
"WIZNET_5100S_EVB_PICO"
,
2
,
"boot2_w25q080_2_padded_checksum"
)
variants/solderparty_rp2040_stamp/pins_arduino.h
0 → 100644
View file @
f91c4b3b
#pragma once
// Pin definitions taken from:
// https://rp2040-stamp.solder.party/carrier
// LEDs
#define PIN_LED (20u)
// Serial
#define PIN_SERIAL1_TX (0u)
#define PIN_SERIAL1_RX (1u)
#define PIN_SERIAL2_TX (24u)
#define PIN_SERIAL2_RX (25u)
// SPI
#define PIN_SPI0_MISO (16u)
#define PIN_SPI0_MOSI (19u)
#define PIN_SPI0_SCK (18u)
#define PIN_SPI0_SS (17u)
#define PIN_SPI1_MISO (8u)
#define PIN_SPI1_MOSI (11u)
#define PIN_SPI1_SCK (10u)
#define PIN_SPI1_SS (9u)
// Wire
#define PIN_WIRE0_SDA (4u)
#define PIN_WIRE0_SCL (5u)
#define PIN_WIRE1_SDA (2u)
#define PIN_WIRE1_SCL (3u)
#define SERIAL_HOWMANY (2u)
#define SPI_HOWMANY (2u)
#define WIRE_HOWMANY (2u)
#define PIN_NEOPIXEL (21u)
#include "../generic/common.h"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment