2022-07-06 20:41:47 +10:00
|
|
|
[package]
|
|
|
|
name = "seeeduino-xiao-rp2040"
|
2022-08-26 19:05:56 +10:00
|
|
|
version = "0.2.0"
|
2022-07-06 20:41:47 +10:00
|
|
|
authors = ["Philip L. McMahon <plm@users.noreply.github.com>", "The rp-rs Developers"]
|
|
|
|
edition = "2018"
|
|
|
|
homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/seeeduino-xiao-rp02040"
|
|
|
|
description = "Board Support Package for the Seeediuno XIAO RP2040"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/rp-rs/rp-hal.git"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
cortex-m = "0.7.2"
|
2022-08-26 19:05:56 +10:00
|
|
|
rp2040-hal = { path = "../../rp2040-hal", version = "0.6.0" }
|
2022-07-06 20:41:47 +10:00
|
|
|
cortex-m-rt = { version = "0.7", optional = true }
|
|
|
|
rp2040-boot2 = { version = "0.2.0", optional = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-19 05:14:51 +10:00
|
|
|
fugit = "0.3.5"
|
2022-07-06 20:41:47 +10:00
|
|
|
panic-halt= "0.2.0"
|
|
|
|
embedded-hal ="0.2.5"
|
|
|
|
nb = "1.0"
|
|
|
|
|
|
|
|
[features]
|
2022-10-03 11:46:12 +11:00
|
|
|
# This is the set of features we enable by default
|
2022-10-03 12:00:25 +11:00
|
|
|
default = ["boot2", "rt", "critical-section-impl", "rom-func-cache"]
|
2022-10-03 11:46:12 +11:00
|
|
|
|
|
|
|
# critical section that is safe for multicore use
|
2022-08-25 00:30:25 +10:00
|
|
|
critical-section-impl = ["rp2040-hal/critical-section-impl"]
|
2022-10-03 11:46:12 +11:00
|
|
|
|
|
|
|
# 2nd stage bootloaders for rp2040
|
2022-07-06 20:41:47 +10:00
|
|
|
boot2 = ["rp2040-boot2"]
|
2022-10-03 11:46:12 +11:00
|
|
|
|
|
|
|
# Minimal startup / runtime for Cortex-M microcontrollers
|
2022-07-06 20:41:47 +10:00
|
|
|
rt = ["cortex-m-rt","rp2040-hal/rt"]
|
2022-10-03 11:46:12 +11:00
|
|
|
|
|
|
|
# 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"]
|