Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MIPI DSI Display HAL #473

Merged
merged 9 commits into from
Jan 27, 2024
18 changes: 16 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ sdio-host = { version = "0.9", optional = true }
embedded-sdmmc = { version = "0.5", optional = true }
stm32-fmc = { version = "0.3", optional = true }
synopsys-usb-otg = { version = "0.4", features = ["cortex-m"], optional = true }
embedded-display-controller = { version = "^0.1.0", optional = true }
embedded-display-controller = { version = "^0.2.0", optional = true }
log = { version = "0.4.14", optional = true} # see also the dev-dependencies section
fdcan = { version = "0.2", optional = true }
embedded-storage = "0.3"
Expand Down Expand Up @@ -81,6 +81,8 @@ usbd-serial = "0.2.0"
numtoa = "0.2.3"
tinybmp = "0.5"
embedded-graphics = "0.8"
otm8009a = "0.1"
eg-seven-segment = "0.2.0"

[dev-dependencies.smoltcp]
version = "0.10.0"
Expand All @@ -100,7 +102,7 @@ gpio-h72 = []
gpio-h747 = []
gpio-h7a2 = []

dsi = []
dsi = ["embedded-display-controller"]
cm4 = []
cm7 = []
smps = []
Expand Down Expand Up @@ -262,3 +264,15 @@ required-features = ["rt", "usb_hs", "rm0433"]
[[example]]
name = "vos0"
required-features = ["revision_v"]

[[example]]
name = "display-dsi-video-stm32h747i-disco"
required-features = ["dsi", "ltdc", "fmc"]
richardeoin marked this conversation as resolved.
Show resolved Hide resolved

[[example]]
name = "display-dsi-video-teartest-stm32h747i-disco"
required-features = ["dsi", "ltdc", "fmc"]

[[example]]
name = "display-dsi-command-teartest-stm32h747i-disco"
required-features = ["dsi", "ltdc", "fmc"]
Loading
Loading