Skip to content
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

fix(OrangePi NEO): Add BOSC0260 IIO detection #303

Merged
merged 1 commit into from
Mar 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rootfs/usr/share/inputplumber/devices/50-orangepi_neo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ source_devices:
handler: event*
- group: imu
iio:
name: i2c-BMI0260:00
name: "{i2c-BOSC0260:00,i2c-BMI0260:00}"
mount_matrix:
# TODO: Reverify on actual hardware
x: [1, 0, 0]
Expand Down
2 changes: 1 addition & 1 deletion src/input/source/iio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl IioDevice {
let name = device_name.as_str();
log::debug!("Finding driver for IIO interface: {name}");
// BMI_IMU
if glob_match("{i2c-10EC5280*,i2c-BMI*,bmi*-imu}", name) {
if glob_match("{i2c-10EC5280*,i2c-BOSC*,i2c-BMI*,bmi*-imu}", name) {
log::info!("Detected BMI IMU");
return DriverType::BmiImu;
}
Expand Down