39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
|
|
[package]
|
||
|
|
name = "sh1106-pico-rs"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
cortex-m = "0.7.7"
|
||
|
|
cortex-m-rt = "0.7.3"
|
||
|
|
embedded-hal = "0.2.7"
|
||
|
|
panic-halt = "0.2.0"
|
||
|
|
rp2040-boot2 = "0.3.0"
|
||
|
|
rp2040-hal = "0.9.1"
|
||
|
|
rp2040-pac = "0.5.0"
|
||
|
|
critical-section = "1.0.0"
|
||
|
|
tiny-rng = "0.2.0"
|
||
|
|
|
||
|
|
|
||
|
|
[features]
|
||
|
|
default = ["rt", "critical-section-impl", "rom-func-cache"]
|
||
|
|
|
||
|
|
# Minimal startup / runtime for Cortex-M microcontrollers
|
||
|
|
rt = ["rp2040-pac/rt"]
|
||
|
|
|
||
|
|
# This enables a fix for USB errata 5: USB device fails to exit RESET state on busy USB bus.
|
||
|
|
# Only required for RP2040 B0 and RP2040 B1, but it also works for RP2040 B2 and above
|
||
|
|
rp2040-e5 = ["rp2040-hal/rp2040-e5"]
|
||
|
|
|
||
|
|
# Memoize(cache) ROM function pointers on first use to improve performance
|
||
|
|
rom-func-cache = ["rp2040-hal/rom-func-cache"]
|
||
|
|
|
||
|
|
# Disable automatic mapping of language features (like floating point math) to ROM functions
|
||
|
|
disable-intrinsics = ["rp2040-hal/disable-intrinsics"]
|
||
|
|
|
||
|
|
# This enables ROM functions for f64 math that were not present in the earliest RP2040s
|
||
|
|
rom-v2-intrinsics = ["rp2040-hal/rom-v2-intrinsics"]
|
||
|
|
|
||
|
|
# critical section that is safe for multicore use
|
||
|
|
critical-section-impl = ["rp2040-hal/critical-section-impl"]
|