33 lines
783 B
TOML
33 lines
783 B
TOML
[package]
|
|
name = "lpc55s28-evk-dma"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[features]
|
|
default = ["usbhs"]
|
|
usbfs = []
|
|
usbhs = []
|
|
|
|
[dependencies]
|
|
cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] }
|
|
cortex-m-rt = "0.7.5"
|
|
defmt = "1.0.1"
|
|
defmt-rtt = "1.1.0"
|
|
embedded-hal = "1.0.0"
|
|
embedded-io = "0.7.1"
|
|
log-to-defmt = "0.1.0"
|
|
nb = "1.1.0"
|
|
panic-probe = { version = "1.0.0", features = ["print-defmt"] }
|
|
static_cell = "2.1.1"
|
|
# Includes update to usb-device 0.3, fix for isochronous and smaller critical sections
|
|
lpc55-hal = { git = "https://github.com/ktims/lpc55-hal", branch = "main" }
|
|
usb-device.workspace = true
|
|
usbd-uac2 = { workspace = true, features = ["defmt"] }
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
debug = true
|
|
codegen-units = 1
|