-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement wrapper for
ViewPort
API
- Loading branch information
1 parent
60cf3ee
commit c4f990b
Showing
8 changed files
with
443 additions
and
8 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 |
---|---|---|
|
@@ -20,4 +20,4 @@ rustflags = [ | |
] | ||
|
||
[build] | ||
target = ["thumbv7em-none-eabihf"] | ||
target = "thumbv7em-none-eabihf" |
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ members = [ | |
"flipperzero", | ||
"sys", | ||
"rt", | ||
"gui", | ||
] | ||
resolver = "2" | ||
|
||
|
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,25 @@ | ||
[package] | ||
name = "flipperzero-gui" | ||
version = "0.6.0-alpha" | ||
description = "Rust GUI bindings for Flipper Zero" | ||
repository = "https://github.com/dcoles/flipperzero-rs" | ||
readme = "../../README.md" | ||
license = "MIT" | ||
edition = "2021" | ||
rust-version = "1.64.0" | ||
autobins = false | ||
autoexamples = false | ||
autotests = false | ||
autobenches = false | ||
|
||
[package.metadata.docs.rs] | ||
default-target = "thumbv7em-none-eabihf" | ||
targets = [] | ||
all-features = true | ||
|
||
[lib] | ||
bench = false | ||
test = false | ||
|
||
[dependencies] | ||
flipperzero-sys = { path = "../sys", version = "0.6.0-alpha" } |
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,5 @@ | ||
//! Safe wrappers for Flipper GUI APIs. | ||
#![no_std] | ||
|
||
pub mod view_port; |
Oops, something went wrong.