Skip to content

Commit

Permalink
Fix graphics task dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
AlixANNERAUD committed Jun 20, 2024
1 parent e32beae commit b781b96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Modules/Graphics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edition = "2021"

[dependencies]
cstr_core = "0.2.6"
Task = { path = "../Task" }

[target.'cfg( target_os = "espidf" )'.dependencies]
lvgl = { git = "https://github.com/lvgl/lv_binding_rust.git", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion Modules/Graphics/src/Window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use lvgl::{
widgets::Label,
LvError, NativeObject, Obj, Widget,
};
use Shared::Task_identifier_type;
use Task::Task_identifier_type;

pub type Windows_indentifier_type = u16;

Expand Down

0 comments on commit b781b96

Please sign in to comment.