2022-12-10 13:10:08 +11:00
|
|
|
[package]
|
|
|
|
name = "waveshare-rp2040-lcd-0-96"
|
|
|
|
version = "0.4.0"
|
|
|
|
authors = ["René van Dorst <opensource@vdorst.com>", "Andrea Nall <anall@andreanal.com>", "TilCreator <contact.github@tc-j.de>", "The rp-rs Developers"]
|
|
|
|
edition = "2018"
|
|
|
|
homepage = "https://github.com/rp-rs/rp-hal/tree/main/boards/waveshare-rp2040-lcd-0_96"
|
|
|
|
description = "Board Support Package for the Waveshare RP2040 LCD 0.96 inch"
|
|
|
|
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"
|
|
|
|
rp2040-boot2 = { version = "0.2.0", optional = true }
|
2022-12-11 00:06:23 +11:00
|
|
|
rp2040-hal = { version = "0.6.0" }
|
2022-12-10 13:10:08 +11:00
|
|
|
cortex-m-rt = { version = "0.7", optional = true }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
panic-halt= "0.2.0"
|
|
|
|
embedded-hal ="0.2.5"
|
|
|
|
fugit = "0.3.5"
|
|
|
|
nb = "1.0.0"
|
|
|
|
embedded-graphics = "0.7.1"
|
|
|
|
st7735-lcd = { version = "0.8.1", features = ["graphics"] }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
# This is the set of features we enable by default
|
|
|
|
default = ["boot2", "rt", "critical-section-impl", "rom-func-cache"]
|
|
|
|
|
|
|
|
# critical section that is safe for multicore use
|
|
|
|
critical-section-impl = ["rp2040-hal/critical-section-impl"]
|
|
|
|
|
|
|
|
# 2nd stage bootloaders for rp2040
|
|
|
|
boot2 = ["rp2040-boot2"]
|
|
|
|
|
|
|
|
# Minimal startup / runtime for Cortex-M microcontrollers
|
|
|
|
rt = ["cortex-m-rt","rp2040-hal/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 doesn't hurt to enable it
|
|
|
|
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"]
|