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
f8ba72aa
Unverified
Commit
f8ba72aa
authored
Mar 29, 2023
by
Paint Your Dragon
Committed by
GitHub
Mar 29, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Feather ThinkINK and USB Host (#1334)
parent
371b2c87
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
707 additions
and
0 deletions
+707
-0
boards.txt
boards.txt
+476
-0
package/package_pico_index.template.json
package/package_pico_index.template.json
+6
-0
tools/json/adafruit_feather_thinkink.json
tools/json/adafruit_feather_thinkink.json
+54
-0
tools/json/adafruit_feather_usb_host.json
tools/json/adafruit_feather_usb_host.json
+54
-0
tools/makeboards.py
tools/makeboards.py
+2
-0
variants/adafruit_feather_thinkink/pins_arduino.h
variants/adafruit_feather_thinkink/pins_arduino.h
+59
-0
variants/adafruit_feather_usb_host/pins_arduino.h
variants/adafruit_feather_usb_host/pins_arduino.h
+56
-0
No files found.
boards.txt
View file @
f8ba72aa
This diff is collapsed.
Click to expand it.
package/package_pico_index.template.json
View file @
f8ba72aa
...
...
@@ -38,6 +38,12 @@
{
"name"
:
"Adafruit Feather RP2040 RFM"
},
{
"name"
:
"Adafruit Feather RP2040 ThinkINK"
},
{
"name"
:
"Adafruit Feather RP2040 USB Host"
},
{
"name"
:
"Adafruit ItsyBitsy RP2040"
},
...
...
tools/json/adafruit_feather_thinkink.json
0 → 100644
View file @
f8ba72aa
{
"build"
:
{
"arduino"
:
{
"earlephilhower"
:
{
"boot2_source"
:
"boot2_w25q080_2_padded_checksum.S"
,
"usb_vid"
:
"0x239A"
,
"usb_pid"
:
"0x812B"
}
},
"core"
:
"earlephilhower"
,
"cpu"
:
"cortex-m0plus"
,
"extra_flags"
:
"-D ARDUINO_ADAFRUIT_FEATHER_RP2040_THINKINK -DARDUINO_ARCH_RP2040 -DUSBD_MAX_POWER_MA=250"
,
"f_cpu"
:
"133000000L"
,
"hwids"
:
[
[
"0x2E8A"
,
"0x00C0"
],
[
"0x239A"
,
"0x812B"
]
],
"mcu"
:
"rp2040"
,
"variant"
:
"adafruit_feather_thinkink"
},
"debug"
:
{
"jlink_device"
:
"RP2040_M0_0"
,
"openocd_target"
:
"rp2040.cfg"
,
"svd_path"
:
"rp2040.svd"
},
"frameworks"
:
[
"arduino"
],
"name"
:
"Feather RP2040 ThinkINK"
,
"upload"
:
{
"maximum_ram_size"
:
270336
,
"maximum_size"
:
8388608
,
"require_upload_port"
:
true
,
"native_usb"
:
true
,
"use_1200bps_touch"
:
true
,
"wait_for_upload_port"
:
false
,
"protocol"
:
"picotool"
,
"protocols"
:
[
"cmsis-dap"
,
"jlink"
,
"raspberrypi-swd"
,
"picotool"
,
"picoprobe"
]
},
"url"
:
"https://www.raspberrypi.org/products/raspberry-pi-pico/"
,
"vendor"
:
"Adafruit"
}
tools/json/adafruit_feather_usb_host.json
0 → 100644
View file @
f8ba72aa
{
"build"
:
{
"arduino"
:
{
"earlephilhower"
:
{
"boot2_source"
:
"boot2_w25q080_2_padded_checksum.S"
,
"usb_vid"
:
"0x239A"
,
"usb_pid"
:
"0x8129"
}
},
"core"
:
"earlephilhower"
,
"cpu"
:
"cortex-m0plus"
,
"extra_flags"
:
"-D ARDUINO_ADAFRUIT_FEATHER_RP2040_USB_HOST -DARDUINO_ARCH_RP2040 -DUSBD_MAX_POWER_MA=250"
,
"f_cpu"
:
"133000000L"
,
"hwids"
:
[
[
"0x2E8A"
,
"0x00C0"
],
[
"0x239A"
,
"0x8129"
]
],
"mcu"
:
"rp2040"
,
"variant"
:
"adafruit_feather_usb_host"
},
"debug"
:
{
"jlink_device"
:
"RP2040_M0_0"
,
"openocd_target"
:
"rp2040.cfg"
,
"svd_path"
:
"rp2040.svd"
},
"frameworks"
:
[
"arduino"
],
"name"
:
"Feather RP2040 USB Host"
,
"upload"
:
{
"maximum_ram_size"
:
270336
,
"maximum_size"
:
8388608
,
"require_upload_port"
:
true
,
"native_usb"
:
true
,
"use_1200bps_touch"
:
true
,
"wait_for_upload_port"
:
false
,
"protocol"
:
"picotool"
,
"protocols"
:
[
"cmsis-dap"
,
"jlink"
,
"raspberrypi-swd"
,
"picotool"
,
"picoprobe"
]
},
"url"
:
"https://www.raspberrypi.org/products/raspberry-pi-pico/"
,
"vendor"
:
"Adafruit"
}
tools/makeboards.py
View file @
f8ba72aa
...
...
@@ -340,6 +340,8 @@ MakeBoard("adafruit_feather", "Adafruit", "Feather RP2040", "0x239a", "0x80f1",
MakeBoard
(
"adafruit_feather_scorpio"
,
"Adafruit"
,
"Feather RP2040 SCORPIO"
,
"0x239a"
,
"0x8121"
,
250
,
"ADAFRUIT_FEATHER_RP2040_SCORPIO"
,
8
,
"boot2_w25q080_2_padded_checksum"
)
MakeBoard
(
"adafruit_feather_dvi"
,
"Adafruit"
,
"Feather RP2040 DVI"
,
"0x239a"
,
"0x8127"
,
250
,
"ADAFRUIT_FEATHER_RP2040_DVI"
,
8
,
"boot2_w25q080_2_padded_checksum"
)
MakeBoard
(
"adafruit_feather_rfm"
,
"Adafruit"
,
"Feather RP2040 RFM"
,
"0x239a"
,
"0x812D"
,
250
,
"ADAFRUIT_FEATHER_RP2040_RFM"
,
8
,
"boot2_w25q080_2_padded_checksum"
)
MakeBoard
(
"adafruit_feather_thinkink"
,
"Adafruit"
,
"Feather RP2040 ThinkINK"
,
"0x239a"
,
"0x812B"
,
250
,
"ADAFRUIT_FEATHER_RP2040_THINKINK"
,
8
,
"boot2_w25q080_2_padded_checksum"
)
MakeBoard
(
"adafruit_feather_usb_host"
,
"Adafruit"
,
"Feather RP2040 USB Host"
,
"0x239a"
,
"0x8129"
,
250
,
"ADAFRUIT_FEATHER_RP2040_USB_HOST"
,
8
,
"boot2_w25q080_2_padded_checksum"
)
MakeBoard
(
"adafruit_itsybitsy"
,
"Adafruit"
,
"ItsyBitsy RP2040"
,
"0x239a"
,
"0x80fd"
,
250
,
"ADAFRUIT_ITSYBITSY_RP2040"
,
8
,
"boot2_w25q080_2_padded_checksum"
)
MakeBoard
(
"adafruit_qtpy"
,
"Adafruit"
,
"QT Py RP2040"
,
"0x239a"
,
"0x80f7"
,
250
,
"ADAFRUIT_QTPY_RP2040"
,
8
,
"boot2_w25q080_2_padded_checksum"
)
MakeBoard
(
"adafruit_stemmafriend"
,
"Adafruit"
,
"STEMMA Friend RP2040"
,
"0x239a"
,
"0x80e3"
,
250
,
"ADAFRUIT_STEMMAFRIEND_RP2040"
,
8
,
"boot2_w25q080_2_padded_checksum"
)
...
...
variants/adafruit_feather_thinkink/pins_arduino.h
0 → 100644
View file @
f8ba72aa
#pragma once
// Pin definitions taken from:
// https://learn.adafruit.com/assets/100337
// LEDs
#define PIN_LED (13u)
// NeoPixel
#define PIN_NEOPIXEL (21u)
#define NEOPIXEL_POWER (20u)
// 'Boot0' button also on GPIO #7
#define PIN_BUTTON (7u)
// EPD connector
#define PIN_EPD_BUSY (16u)
#define PIN_EPD_RESET (17u)
#define PIN_EPD_DC (18u)
#define PIN_EPD_CS (19u)
#define PIN_EPD_SCK (22u)
#define PIN_EPD_MOSI (23u)
// Serial
#define PIN_SERIAL1_TX (0u)
#define PIN_SERIAL1_RX (1u)
// Not pinned out
#define PIN_SERIAL2_TX (31u)
#define PIN_SERIAL2_RX (31u)
// SPI
#define PIN_SPI0_MISO (8u)
#define PIN_SPI0_MOSI (15u)
#define PIN_SPI0_SCK (14u)
#define PIN_SPI0_SS (13u)
#define __SPI0_DEVICE spi1
// EPD SPI
#define PIN_SPI1_MISO (31u)
#define PIN_SPI1_MOSI (23u)
#define PIN_SPI1_SCK (22u)
#define PIN_SPI1_SS (19u)
#define __SPI1_DEVICE spi0
// Wire
#define PIN_WIRE0_SDA (2u)
#define PIN_WIRE0_SCL (3u)
#define __WIRE0_DEVICE i2c1
#define PIN_WIRE1_SDA (31u)
#define PIN_WIRE1_SCL (31u)
#define __WIRE1_DEVICE i2c0
#define SERIAL_HOWMANY (2u)
#define SPI_HOWMANY (2u)
#define WIRE_HOWMANY (1u)
#include "../generic/common.h"
variants/adafruit_feather_usb_host/pins_arduino.h
0 → 100644
View file @
f8ba72aa
#pragma once
// Pin definitions taken from:
// https://learn.adafruit.com/assets/100337
// LEDs
#define PIN_LED (13u)
// NeoPixel
#define PIN_NEOPIXEL (21u)
#define NEOPIXEL_POWER (20u)
// 'Boot0' button also on GPIO #7
#define PIN_BUTTON (7u)
// USB host connector
#define PIN_USB_DP (16u)
#define PIN_USB_DN (17u)
#define PIN_5V_EN (18u)
// Serial
#define PIN_SERIAL1_TX (0u)
#define PIN_SERIAL1_RX (1u)
// Not pinned out
#define PIN_SERIAL2_TX (31u)
#define PIN_SERIAL2_RX (31u)
// SPI
#define PIN_SPI0_MISO (8u)
#define PIN_SPI0_MOSI (15u)
#define PIN_SPI0_SCK (14u)
#define PIN_SPI0_SS (13u)
#define __SPI0_DEVICE spi1
// Not pinned out
#define PIN_SPI1_MISO (31u)
#define PIN_SPI1_MOSI (31u)
#define PIN_SPI1_SCK (31u)
#define PIN_SPI1_SS (31u)
#define __SPI1_DEVICE spi0
// Wire
#define PIN_WIRE0_SDA (2u)
#define PIN_WIRE0_SCL (3u)
#define __WIRE0_DEVICE i2c1
#define PIN_WIRE1_SDA (31u)
#define PIN_WIRE1_SCL (31u)
#define __WIRE1_DEVICE i2c0
#define SERIAL_HOWMANY (2u)
#define SPI_HOWMANY (1u)
#define WIRE_HOWMANY (1u)
#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