Skip to content

Commit

Permalink
add slint
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalie Ciochina committed Sep 14, 2024
1 parent 197a385 commit 53824c1
Show file tree
Hide file tree
Showing 2 changed files with 317 additions and 106 deletions.
15 changes: 13 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,25 @@ license = "MIT OR Apache-2.0"
[dependencies]
cortex-m = "0.7"
cortex-m-rt = "0.7"
embedded-hal = { version = "0.2.5", features = ["unproven"] }
embedded-hal = { version = "1.0.0"}

defmt = "0.3"
defmt-rtt = "0.4"
panic-probe = { version = "0.3", features = ["print-defmt"] }

# We're using a Pico by default on this template
rp-pico = "0.9"
heapless = "0.7.4"
heapless = "0.8.0"
byteorder = { version = "1", default-features = false }
bme680 = "0.6.0"
slint = { version = "1.7.0", default-features = false, features = ["compat-1-2", "unsafe-single-threaded", "libm", "renderer-software"] }
embedded-alloc = "0.6.0"
display-interface-spi = "0.5.0"
mipidsi = "0.8.0"
embedded-dma = "=0.2.0"
display-interface = "0.5.0"
embedded-hal-nb = "1.0.0"
embedded-graphics = "0.8.1"
# but you can use any BSP. Uncomment this to use the pro_micro_rp2040 BSP instead
# sparkfun-pro-micro-rp2040 = "0.8"

Expand Down Expand Up @@ -77,3 +85,6 @@ debug-assertions = false
incremental = false
lto = 'fat'
opt-level = 3

[build-dependencies]
slint-build = "1.7.0"
Loading

0 comments on commit 53824c1

Please sign in to comment.