tests(embassy): complete the usb dummy arch module #376
main.yml
on: pull_request
Matrix: build
lint
24s
Final Results
0s
Annotations
2 errors and 5 warnings
the trait bound `arch::Config: core::default::Default` is not satisfied:
src/riot-rs-embassy/src/lib.rs#L59
error[E0277]: the trait bound `arch::Config: core::default::Default` is not satisfied
--> src/riot-rs-embassy/src/lib.rs:59:56
|
59 | let p = arch::OptionalPeripherals::from(arch::init(Default::default()));
| ^^^^^^^^^^^^^^^^^^ the trait `core::default::Default` is not implemented for `arch::Config`
|
help: consider annotating `arch::Config` with `#[derive(Default)]`
--> src/riot-rs-embassy/src/arch/dummy.rs:50:1
|
50 + #[derive(Default)]
51 | pub struct Config;
|
|
lint
Clippy has exited with exit code 101
|
function `startup` is never used:
src/riot-rs-rt/src/lib.rs#L65
warning: function `startup` is never used
--> src/riot-rs-rt/src/lib.rs:65:4
|
65 | fn startup() -> ! {
| ^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
|
function `init` is never used:
src/riot-rs-rt/src/lib.rs#L33
warning: function `init` is never used
--> src/riot-rs-rt/src/lib.rs:33:20
|
33 | pub fn init() {}
| ^^^^
|
this returns a `Result<_, ()>`:
src/riot-rs-rt/src/lib.rs#L34
warning: this returns a `Result<_, ()>`
--> src/riot-rs-rt/src/lib.rs:34:13
|
34 | pub fn benchmark<F: Fn()>(_iterations: usize, _f: F) -> core::result::Result<usize, ()> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: use a custom `Error` type instead
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_unit_err
= note: `#[warn(clippy::result_unit_err)]` on by default
|
empty `loop {}` wastes CPU cycles:
src/riot-rs-rt/src/lib.rs#L89
warning: empty `loop {}` wastes CPU cycles
--> src/riot-rs-rt/src/lib.rs:89:9
|
89 | loop {}
| ^^^^^^^
|
= help: you should either use `panic!()` or add a call pausing or sleeping the thread to the loop body
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_loop
|
empty `loop {}` wastes CPU cycles:
src/riot-rs-rt/src/debug.rs#L39
warning: empty `loop {}` wastes CPU cycles
--> src/riot-rs-rt/src/debug.rs:39:9
|
39 | loop {}
| ^^^^^^^
|
= help: you should either use `panic!()` or add a call pausing or sleeping the thread to the loop body
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#empty_loop
= note: `#[warn(clippy::empty_loop)]` on by default
|