aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-05-14 23:02:49 +0200
committerDario Nieuwenhuis <[email protected]>2023-05-14 23:02:49 +0200
commitdb907a914c7e84176a15da70385af871c9b97cf6 (patch)
tree7662420e7adf863ce061eda537c0e694afabb4e1 /examples
parent8800caa216f2c90b7d998280a54dddf14e97e318 (diff)
cyw43-pio: add `overclock` feature flag.
Diffstat (limited to 'examples')
-rw-r--r--examples/rpi-pico-w/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/rpi-pico-w/Cargo.toml b/examples/rpi-pico-w/Cargo.toml
index d972bf5a5..525e934f4 100644
--- a/examples/rpi-pico-w/Cargo.toml
+++ b/examples/rpi-pico-w/Cargo.toml
@@ -6,7 +6,7 @@ edition = "2021"
6 6
7[dependencies] 7[dependencies]
8cyw43 = { path = "../../", features = ["defmt", "firmware-logs"] } 8cyw43 = { path = "../../", features = ["defmt", "firmware-logs"] }
9cyw43-pio = { path = "../../cyw43-pio", features = ["defmt"] } 9cyw43-pio = { path = "../../cyw43-pio", features = ["defmt", "overclock"] }
10embassy-executor = { version = "0.2.0", features = ["defmt", "integrated-timers", "executor-thread", "arch-cortex-m"] } 10embassy-executor = { version = "0.2.0", features = ["defmt", "integrated-timers", "executor-thread", "arch-cortex-m"] }
11embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] } 11embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] }
12embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver"] } 12embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver"] }
@@ -48,7 +48,7 @@ debug = 1
48debug-assertions = false 48debug-assertions = false
49incremental = false 49incremental = false
50lto = 'fat' 50lto = 'fat'
51opt-level = 'z' 51opt-level = 's'
52overflow-checks = false 52overflow-checks = false
53 53
54# do not optimize proc-macro crates = faster builds from scratch 54# do not optimize proc-macro crates = faster builds from scratch