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

Add embassy microcontroller example demonstrating async #7064

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Attempt to fix CI issue with mcu-embassy check
  • Loading branch information
ninjasource committed Dec 11, 2024
commit 456e29e7f9b43873016aab01e13e97fa5f7d1007
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-rust
- name: Check
run: cargo check --bin ui_mcu --target=thumbv8m.main-none-eabihf --no-default-features --features=mcu --release
run: cargo check -p mcu_embassy --bin ui_mcu --target=thumbv8m.main-none-eabihf --no-default-features --features="mcu-embassy/mcu" --release

mcu_esp:
env:
Expand Down
2 changes: 2 additions & 0 deletions examples/mcu-embassy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ edition = "2021"
authors = ["David Haig <david@ninjametal.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/slint-ui/slint"
homepage = "https://slint.dev"

[dependencies]
log = "0.4"
Expand Down
3 changes: 3 additions & 0 deletions examples/mcu-embassy/slint_generated/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ edition = "2021"
build = "build.rs"
readme = "README.md"
resolver = "2"
license = "MIT"
repository = "https://github.com/slint-ui/slint"
homepage = "https://slint.dev"

[dependencies]
slint = { version = "=1.9.0", path = "../../../api/rs/slint", default-features = false, features = [
Expand Down
Loading