-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add pico2 support (ARM+RISCV). configuration now in toml file * use hardware SHA256 * compare performance (but not power consumption)
- Loading branch information
1 parent
5b4779e
commit dc4f35f
Showing
14 changed files
with
263 additions
and
117 deletions.
There are no files selected for viewing
This file contains 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 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 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,29 @@ | ||
# Board configurations | ||
|
||
[default] | ||
PICO_PLATFORM = "rp2040" | ||
PICO_TOOLCHAIN_PATH = "/usr" | ||
PICO_SDK_PATH = "../../pico-sdk-2.0.0" | ||
|
||
[pico] | ||
PICO_BOARD = "pico" | ||
|
||
[pico_w] | ||
PICO_BOARD = "pico_w" | ||
|
||
[tiny2040] | ||
PICO_BOARD = "pimoroni_tiny2040_2mb" | ||
|
||
[pico2] | ||
PICO_BOARD = "pico2" | ||
PICO_PLATFORM = "rp2350-arm-s" | ||
PICO_TOOLCHAIN_PATH = "/usr" | ||
# TinyUSB release 0.16 doesnt work, use latest SDK which points to a random commit on main | ||
PICO_SDK_PATH = "../../pico-sdk" | ||
|
||
[pico2-riscv] | ||
PICO_BOARD = "pico2" | ||
PICO_PLATFORM = "rp2350-riscv" | ||
PICO_TOOLCHAIN_PATH = "/opt/riscv-gcc-14" | ||
# TinyUSB release 0.16 doesnt work, use latest SDK which points to a random commit on main | ||
PICO_SDK_PATH = "../../pico-sdk" |
This file contains 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 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
Oops, something went wrong.