-
Notifications
You must be signed in to change notification settings - Fork 508
Add Jumperless and Jumperless V5 to supported boards #2514
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
earlephilhower
merged 6 commits into
earlephilhower:master
from
Architeuthis-Flux:master
Oct 3, 2024
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1e7ee2b
Add Jumperless and Jumperless V5 to supported boards
Architeuthis-Flux ed84d7b
Fixed Boot2 definition for V5
Architeuthis-Flux 226fde8
add 2nd serial on V1 because a check was failing
Architeuthis-Flux 2736273
Chmodded makeboards
Architeuthis-Flux a07a8d6
Let's try that chmod again
Architeuthis-Flux 8f0b2a5
Update pins_arduino.h
earlephilhower File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| { | ||
| "build": { | ||
| "arduino": { | ||
| "earlephilhower": { | ||
| "boot2_source": "boot2_w25q128jvxq_4_padded_checksum.S", | ||
| "usb_vid": "0x1D50", | ||
| "usb_pid": "0xACAB" | ||
| } | ||
| }, | ||
| "core": "earlephilhower", | ||
| "cpu": "cortex-m0plus", | ||
| "extra_flags": "-DARDUINO_JUMPERLESS -DARDUINO_ARCH_RP2040 -DUSBD_MAX_POWER_MA=500 ", | ||
| "f_cpu": "133000000L", | ||
| "hwids": [ | ||
| [ | ||
| "0x2E8A", | ||
| "0x00C0" | ||
| ], | ||
| [ | ||
| "0x1D50", | ||
| "0xACAB" | ||
| ] | ||
| ], | ||
| "mcu": "rp2040", | ||
| "variant": "jumperless_v1" | ||
| }, | ||
| "debug": { | ||
| "jlink_device": "RP2040_M0_0", | ||
| "openocd_target": "rp2040.cfg", | ||
| "svd_path": "rp2040.svd" | ||
| }, | ||
| "frameworks": [ | ||
| "arduino" | ||
| ], | ||
| "name": "Jumperless", | ||
| "upload": { | ||
| "maximum_ram_size": 262144, | ||
| "maximum_size": 16777216, | ||
| "require_upload_port": true, | ||
| "native_usb": true, | ||
| "use_1200bps_touch": true, | ||
| "wait_for_upload_port": false, | ||
| "protocol": "picotool", | ||
| "protocols": [ | ||
| "blackmagic", | ||
| "cmsis-dap", | ||
| "jlink", | ||
| "raspberrypi-swd", | ||
| "picotool", | ||
| "picoprobe" | ||
| ] | ||
| }, | ||
| "url": "https://github.com/Architeuthis-Flux/Jumperless", | ||
| "vendor": "Architeuthis Flux" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| { | ||
| "build": { | ||
| "arduino": { | ||
| "earlephilhower": { | ||
| "boot2_source": "boot2_w25q128jvxq_4_padded_checksum.S", | ||
| "usb_vid": "0x1D50", | ||
| "usb_pid": "0xACAB" | ||
| } | ||
| }, | ||
| "core": "earlephilhower", | ||
| "cpu": "cortex-m33", | ||
| "extra_flags": "-DARDUINO_JUMPERLESS_V5 -DARDUINO_ARCH_RP2040 -DUSBD_MAX_POWER_MA=500 ", | ||
| "f_cpu": "150000000L", | ||
| "hwids": [ | ||
| [ | ||
| "0x2E8A", | ||
| "0x00C0" | ||
| ], | ||
| [ | ||
| "0x1D50", | ||
| "0xACAB" | ||
| ] | ||
| ], | ||
| "mcu": "rp2350", | ||
| "variant": "jumperless_v5" | ||
| }, | ||
| "debug": { | ||
| "jlink_device": "RP2350_0", | ||
| "openocd_target": "rp2350.cfg", | ||
| "svd_path": "rp2350.svd" | ||
| }, | ||
| "frameworks": [ | ||
| "arduino" | ||
| ], | ||
| "name": "Jumperless V5", | ||
| "upload": { | ||
| "maximum_ram_size": 524288, | ||
| "maximum_size": 16777216, | ||
| "require_upload_port": true, | ||
| "native_usb": true, | ||
| "use_1200bps_touch": true, | ||
| "wait_for_upload_port": false, | ||
| "protocol": "picotool", | ||
| "protocols": [ | ||
| "blackmagic", | ||
| "cmsis-dap", | ||
| "jlink", | ||
| "raspberrypi-swd", | ||
| "picotool", | ||
| "picoprobe" | ||
| ] | ||
| }, | ||
| "url": "https://github.com/Architeuthis-Flux/JumperlessV5", | ||
| "vendor": "Architeuthis Flux" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| { | ||
| "build": { | ||
| "arduino": { | ||
| "earlephilhower": { | ||
| "boot2_source": "boot2_w25q128jvxq_4_padded_checksum.S", | ||
| "usb_vid": "0x1D50", | ||
| "usb_pid": "0xACAB" | ||
| } | ||
| }, | ||
| "core": "earlephilhower", | ||
| "cpu": "cortex-m0plus", | ||
| "extra_flags": "-DARDUINO_JUMPERLESS -DARDUINO_ARCH_RP2040 -DUSBD_MAX_POWER_MA=500 ", | ||
| "f_cpu": "133000000L", | ||
| "hwids": [ | ||
| [ | ||
| "0x2E8A", | ||
| "0x00C0" | ||
| ], | ||
| [ | ||
| "0x1D50", | ||
| "0xACAB" | ||
| ] | ||
| ], | ||
| "mcu": "rp2040", | ||
| "variant": "jumperless_v1" | ||
| }, | ||
| "debug": { | ||
| "jlink_device": "RP2040_M0_0", | ||
| "openocd_target": "rp2040.cfg", | ||
| "svd_path": "rp2040.svd" | ||
| }, | ||
| "frameworks": [ | ||
| "arduino" | ||
| ], | ||
| "name": "Jumperless", | ||
| "upload": { | ||
| "maximum_ram_size": 262144, | ||
| "maximum_size": 16777216, | ||
| "require_upload_port": true, | ||
| "native_usb": true, | ||
| "use_1200bps_touch": true, | ||
| "wait_for_upload_port": false, | ||
| "protocol": "picotool", | ||
| "protocols": [ | ||
| "blackmagic", | ||
| "cmsis-dap", | ||
| "jlink", | ||
| "raspberrypi-swd", | ||
| "picotool", | ||
| "picoprobe" | ||
| ] | ||
| }, | ||
| "url": "https://github.com/Architeuthis-Flux/Jumperless", | ||
| "vendor": "Architeuthis Flux" | ||
| } |
Architeuthis-Flux marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| #pragma once | ||
|
|
||
| // Pin definitions taken from: | ||
| // https://github.com/Architeuthis-Flux/Jumperless/tree/main/Hardware | ||
|
|
||
| // LEDs | ||
| #define PIN_LED (25u) | ||
|
|
||
| // Serial | ||
| #define PIN_SERIAL1_TX (16u) | ||
| #define PIN_SERIAL1_RX (17u) | ||
|
|
||
| // SPI | ||
| #define PIN_SPI0_MISO (0u) | ||
| #define PIN_SPI0_MOSI (3u) | ||
| #define PIN_SPI0_SCK (2u) | ||
| #define PIN_SPI0_SS (1u) | ||
|
|
||
| // Wire | ||
| #define PIN_WIRE0_SDA (4u) | ||
| #define PIN_WIRE0_SCL (5u) | ||
|
|
||
| #define PIN_WIRE1_SDA (18u) | ||
| #define PIN_WIRE1_SCL (19u) | ||
|
|
||
| #define SERIAL_HOWMANY (1u) | ||
| #define SPI_HOWMANY (1u) | ||
| #define WIRE_HOWMANY (2u) | ||
|
|
||
| #include "../generic/common.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| { | ||
| "build": { | ||
| "arduino": { | ||
| "earlephilhower": { | ||
| "boot2_source": "boot2_w25q128jvxq_4_padded_checksum.S", | ||
| "usb_vid": "0x1D50", | ||
| "usb_pid": "0xACAB" | ||
| } | ||
| }, | ||
| "core": "earlephilhower", | ||
| "cpu": "cortex-m33", | ||
| "extra_flags": "-DARDUINO_JUMPERLESS_V5 -DARDUINO_ARCH_RP2040 -DUSBD_MAX_POWER_MA=500 ", | ||
| "f_cpu": "150000000L", | ||
| "hwids": [ | ||
| [ | ||
| "0x2E8A", | ||
| "0x00C0" | ||
| ], | ||
| [ | ||
| "0x1D50", | ||
| "0xACAB" | ||
| ] | ||
| ], | ||
| "mcu": "rp2350", | ||
| "variant": "jumperless_v5" | ||
| }, | ||
| "debug": { | ||
| "jlink_device": "RP2350_0", | ||
| "openocd_target": "rp2350.cfg", | ||
| "svd_path": "rp2350.svd" | ||
| }, | ||
| "frameworks": [ | ||
| "arduino" | ||
| ], | ||
| "name": "Jumperless V5", | ||
| "upload": { | ||
| "maximum_ram_size": 524288, | ||
| "maximum_size": 16777216, | ||
| "require_upload_port": true, | ||
| "native_usb": true, | ||
| "use_1200bps_touch": true, | ||
| "wait_for_upload_port": false, | ||
| "protocol": "picotool", | ||
| "protocols": [ | ||
| "blackmagic", | ||
| "cmsis-dap", | ||
| "jlink", | ||
| "raspberrypi-swd", | ||
| "picotool", | ||
| "picoprobe" | ||
| ] | ||
| }, | ||
| "url": "https://github.com/Architeuthis-Flux/JumperlessV5", | ||
| "vendor": "Architeuthis Flux" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| #pragma once | ||
|
|
||
| // Pin definitions taken from: | ||
| // https://github.com/Architeuthis-Flux/JumperlessV5/tree/main/Hardware/Jumperless23V50 | ||
|
|
||
| #define PICO_RP2350B 1 | ||
|
|
||
| // LEDs | ||
| #define PIN_LED (17u) | ||
|
|
||
| // 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 (20u) | ||
| #define PIN_SPI0_MOSI (23u) | ||
| #define PIN_SPI0_SCK (22u) | ||
| #define PIN_SPI0_SS (21u) | ||
|
|
||
| #define PIN_SPI1_MISO (24u) | ||
| #define PIN_SPI1_MOSI (27u) | ||
| #define PIN_SPI1_SCK (26u) | ||
| #define PIN_SPI1_SS (25u) | ||
|
|
||
| // Wire | ||
| #define PIN_WIRE0_SDA (4u) | ||
| #define PIN_WIRE0_SCL (5u) | ||
|
|
||
| #define PIN_WIRE1_SDA (22u) | ||
| #define PIN_WIRE1_SCL (23u) | ||
|
|
||
| #define SERIAL_HOWMANY (2u) | ||
| #define SPI_HOWMANY (2u) | ||
| #define WIRE_HOWMANY (2u) | ||
|
|
||
| #include "../generic/common.h" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.