-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add BNO055 #157
base: main
Are you sure you want to change the base?
Add BNO055 #157
Conversation
@@ -8,6 +8,8 @@ | |||
#![feature(alloc_error_handler)] | |||
// We want to do some floating point math at compile time | |||
#![feature(const_fn_floating_point_arithmetic)] | |||
// Asynchronous IMU sampling | |||
#![feature(async_fn_in_trait)] |
Check warning
Code scanning / clippy
the feature `async_fn_in_trait` is incomplete and may not be safe to use and/or cause compiler crashes
} | ||
|
||
impl<I: I2c, const F: bool> Bno055<I, F> { | ||
pub fn new( |
Check warning
Code scanning / clippy
associated function `new` is never used
I don't think I have a bno055 to test on. Did you test this one? |
Requires #154