You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 6, 2019. It is now read-only.
When running the recommended nightly version (rustc --version returns d4037fc47 2016-09-16), the examples/blink_tiva_c example does not compile for two reasons:
% cargo build --target=thumbv7em-none-eabi --features mcu_tiva_c --release
Compiling zinc v0.1.0 (file:///home/gyscos/fetched/zinc)
warning: unused or unknown feature, #[warn(unused_features)] on by default
--> /home/gyscos/fetched/zinc/src/lib.rs:17:45
|
17 | #![feature(core_intrinsics, core_slice_ext, core_str_ext)]
| ^^^^^^^^^^^^
warning: unused import, #[warn(unused_imports)] on by default
--> /home/gyscos/fetched/zinc/src/drivers/lcd/c12332.rs:27:5
|
27 | use core::slice::SliceExt;
| ^^^^^^^^^^^^^^^^^^^^^
Compiling blink_tiva_c v0.0.1 (file:///home/gyscos/fetched/zinc/examples/blink_tiva_c)
error[E0433]: failed to resolve. Use of undeclared type or module `pt`
--> src/main.rs:45:15
|
45 | fn run(args: &pt::run_args) {
| ^^^^^^^^^^^^ Use of undeclared type or module `pt`
error: aborting due to previous error
error: Could not compile `blink_tiva_c`.
To learn more, run the command again with --verbose.
cargo build --target=thumbv7em-none-eabi --features mcu_tiva_c --release 11.20s user 0.10s system 99% cpu 11.338 total
Note: compiling the blink_k20 works properly, but apparently these two examples have different structures.