-
Notifications
You must be signed in to change notification settings - Fork 628
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated copyright notice and embassy dependency
- Loading branch information
1 parent
5a091fe
commit 30ebef3
Showing
18 changed files
with
63 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
# Copyright © 2025 David Haig | ||
# SPDX-License-Identifier: MIT | ||
|
||
[package] | ||
name = "mcu-embassy" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["David Haig <[email protected]>"] | ||
readme = "README.md" | ||
resolver = "2" | ||
license = "MIT" | ||
publish = false | ||
repository = "https://github.com/slint-ui/slint" | ||
homepage = "https://slint.dev" | ||
|
||
|
@@ -33,7 +38,7 @@ slint = { version = "=1.9.0", path = "../../api/rs/slint", default-features = fa | |
] } | ||
i-slint-core-macros = { version = "=1.9.0", path = "../../internal/core-macros" } | ||
|
||
embassy-stm32 = { git = "https://github.com/embassy-rs/embassy", rev = "72976fe", optional = true, features = [ | ||
embassy-stm32 = { git = "https://github.com/embassy-rs/embassy", rev = "4790f8f", optional = true, features = [ | ||
"stm32u5g9zj", | ||
"time-driver-tim2", | ||
"exti", | ||
|
@@ -42,14 +47,14 @@ embassy-stm32 = { git = "https://github.com/embassy-rs/embassy", rev = "72976fe" | |
"chrono", | ||
"time", | ||
] } | ||
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "72976fe", optional = true } | ||
embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "72976fe", optional = true, features = [ | ||
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "4790f8f", optional = true } | ||
embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "4790f8f", optional = true, features = [ | ||
"task-arena-size-32768", | ||
"arch-cortex-m", | ||
"executor-thread", | ||
"integrated-timers", | ||
] } | ||
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "72976fe", optional = true } | ||
embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "72976fe", optional = true } | ||
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "4790f8f", optional = true } | ||
embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "4790f8f", optional = true } | ||
|
||
env_logger = { version = "0.9.0", optional = true } | ||
sdl2 = { git = "https://github.com/Rust-SDL2/rust-sdl2", rev = "400e033", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
# Copyright © 2025 David Haig | ||
# SPDX-License-Identifier: MIT | ||
|
||
[package] | ||
name = "slint-generated" | ||
version = "0.1.0" | ||
edition = "2021" | ||
build = "build.rs" | ||
authors = ["David Haig <[email protected]>"] | ||
readme = "README.md" | ||
resolver = "2" | ||
license = "MIT" | ||
publish = false | ||
repository = "https://github.com/slint-ui/slint" | ||
homepage = "https://slint.dev" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Generated | ||
|
||
This crate is here to separate the `.slint` file compilation from the main application. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// Copyright © 2025 David Haig | ||
// SPDX-License-Identifier: MIT | ||
|
||
#![no_std] | ||
|
||
slint::include_modules!(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
// Copyright © 2025 David Haig | ||
// SPDX-License-Identifier: MIT | ||
|
||
pub mod hardware; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters