-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update comments, remove logs and update test * Update zemu test * Use target to define constants * Do not render non-ascii characters * Update zxlib * New abstractions for msg rendering * Check for reply to be Ok from the canister * reduce binary size * Add new resource for UI consent message response * Move iterator to its own module Use iterator and add another Msg struct to cach number of items and optimize review flow Use new UI resource Update zxlib Export heardbeat and util function to debug numbers Use consentInfo as the ui handlers Fix warnings Use panic abort and reduce binary size Update test and pad with spaces Adjust test as we do not longer support screen width smaller that lines Serialize test Update snapshots * Update bindings * Omit tests as we need more suitable testing data * Make clippy happy * Fix snapshots and update version * Remove ram setting from makefile as it causes errors in nanos * some cleanups
- Loading branch information
Showing
355 changed files
with
477 additions
and
475 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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
fn main() { | ||
let target = std::env::var("RUST_TARGET_NAME").unwrap_or_default(); | ||
match target.as_str() { | ||
"TARGET_STAX" => println!("cargo:rustc-cfg=device_stax"), | ||
"TARGET_FLEX" => println!("cargo:rustc-cfg=device_flex"), | ||
"TARGET_NANOS2" => println!("cargo:rustc-cfg=device_nanos2"), | ||
"TARGET_NANOX" => println!("cargo:rustc-cfg=device_nanox"), | ||
_ => println!("cargo:rustc-cfg=device_nanos"), // default | ||
} | ||
} |
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
Oops, something went wrong.