-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update SPI call * remove dependency on atomics * fix resolution for ESP32-LcdKit
- Loading branch information
Showing
31 changed files
with
106 additions
and
150 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
[package] | ||
name = "spooky-wrover-kit" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Juraj Michálek <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
||
[target.xtensa-esp32-none-elf.dependencies] | ||
xtensa-atomic-emulation-trap = "0.4.0" | ||
hal = { package = "esp32-hal", version = "0.16.0", features = ["psram-8m"] } | ||
hal = { package = "esp32-hal", version = "0.17.0", features = ["psram-8m"] } | ||
esp-backtrace = { version = "0.9.0", features = [ | ||
"esp32", | ||
"panic-handler", | ||
|
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "spooky-esp32-c3" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Juraj Michálek <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
||
[target.riscv32imac-unknown-none-elf.dependencies] | ||
hal = { package = "esp32c3-hal", version = "0.13.0" } | ||
[target.riscv32imc-unknown-none-elf.dependencies] | ||
hal = { package = "esp32c3-hal", version = "0.14.0" } | ||
esp-backtrace = { version = "0.9.0", features = [ | ||
"esp32c3", | ||
"panic-handler", | ||
|
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 |
---|---|---|
@@ -1,30 +1,14 @@ | ||
[target.riscv32imac-unknown-none-elf] | ||
[target.riscv32imc-unknown-none-elf] | ||
runner = "espflash flash --monitor" | ||
rustflags = [ | ||
"-C", "link-arg=-Tlinkall.x", | ||
# Required to obtain backtraces (e.g. when using the "esp-backtrace" crate.) | ||
# NOTE: May negatively impact performance of produced code | ||
"-C", "force-frame-pointers", | ||
|
||
# comment the cfgs below if you do _not_ wish to emulate atomics. | ||
# enable the atomic codegen option for RISCV | ||
"-C", "target-feature=+a", | ||
# tell the core library have atomics even though it's not specified in the target definition | ||
"--cfg", "target_has_atomic_load_store", | ||
"--cfg", 'target_has_atomic_load_store="8"', | ||
"--cfg", 'target_has_atomic_load_store="16"', | ||
"--cfg", 'target_has_atomic_load_store="32"', | ||
"--cfg", 'target_has_atomic_load_store="ptr"', | ||
# enable cas | ||
"--cfg", "target_has_atomic", | ||
"--cfg", 'target_has_atomic="8"', | ||
"--cfg", 'target_has_atomic="16"', | ||
"--cfg", 'target_has_atomic="32"', | ||
"--cfg", 'target_has_atomic="ptr"', | ||
] | ||
|
||
[build] | ||
target = "riscv32imac-unknown-none-elf" | ||
target = "riscv32imc-unknown-none-elf" | ||
|
||
[unstable] | ||
build-std = [ "core", "alloc" ] |
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "spooky-esp32-c3-lcdkit" | ||
version = "0.8.0" | ||
version = "0.10.0" | ||
authors = ["Juraj Michálek <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
||
[target.riscv32imac-unknown-none-elf.dependencies] | ||
hal = { package = "esp32c3-hal", version = "0.13.0" } | ||
[target.riscv32imc-unknown-none-elf.dependencies] | ||
hal = { package = "esp32c3-hal", version = "0.14.0" } | ||
esp-backtrace = { version = "0.9.0", features = [ | ||
"esp32c3", | ||
"panic-handler", | ||
|
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "spooky-esp32-c6" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Juraj Michálek <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
||
[target.riscv32imac-unknown-none-elf.dependencies] | ||
hal = { package = "esp32c6-hal", version = "0.6.0" } | ||
esp-backtrace = { version = "0.8.0", features = ["esp32c6", "panic-handler", "exception-handler", "print-uart"] } | ||
hal = { package = "esp32c6-hal", version = "0.7.0" } | ||
esp-backtrace = { version = "0.9.0", features = ["esp32c6", "panic-handler", "exception-handler", "print-uart"] } | ||
esp-println = { version = "0.7.0", features = [ "esp32c6", "log" ] } | ||
|
||
[dependencies] | ||
|
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 |
---|---|---|
@@ -1,13 +1,12 @@ | ||
[package] | ||
name = "spooky-s2-kaluga" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Juraj Michálek <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
||
[target.xtensa-esp32s2-none-elf.dependencies] | ||
xtensa-atomic-emulation-trap = "0.4.0" | ||
hal = { package = "esp32s2-hal", version = "0.13.0" } | ||
hal = { package = "esp32s2-hal", version = "0.14.0" } | ||
esp-backtrace = { version = "0.9.0", features = [ | ||
"esp32s2", | ||
"panic-handler", | ||
|
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 |
---|---|---|
@@ -1,13 +1,12 @@ | ||
[package] | ||
name = "spooky-s3-box-lite" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Juraj Michálek <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
||
[target.xtensa-esp32s3-none-elf.dependencies] | ||
xtensa-atomic-emulation-trap = "0.4.0" | ||
hal = { package = "esp32s3-hal", version = "0.13.0" , features = ["opsram-8m"] } | ||
hal = { package = "esp32s3-hal", version = "0.14.0" , features = ["opsram-8m"] } | ||
esp-backtrace = { version = "0.9.0", features = [ | ||
"esp32s3", | ||
"panic-handler", | ||
|
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "spooky-s3-box" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Juraj Michálek <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
||
[target.xtensa-esp32s3-none-elf.dependencies] | ||
xtensa-atomic-emulation-trap = "0.4.0" | ||
hal = { package = "esp32s3-hal", version = "0.13.0" , features = ["opsram-8m"] } | ||
hal = { package = "esp32s3-hal", version = "0.14.0" , features = ["opsram-8m"] } | ||
esp-backtrace = { version = "0.9.0", features = [ | ||
"esp32s3", | ||
"panic-handler", | ||
|
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 |
---|---|---|
@@ -1,13 +1,12 @@ | ||
[package] | ||
name = "spooky-s3-usb-otg" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Juraj Michálek <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT" | ||
|
||
[target.xtensa-esp32s3-none-elf.dependencies] | ||
xtensa-atomic-emulation-trap = "0.4.0" | ||
hal = { package = "esp32s3-hal", version = "0.13.0" } | ||
hal = { package = "esp32s3-hal", version = "0.14.0" } | ||
esp-backtrace = { version = "0.9.0", features = [ | ||
"esp32s3", | ||
"panic-handler", | ||
|
Oops, something went wrong.